1
0
Fork 0
mirror of https://github.com/gwm17/glfw.git synced 2025-02-07 06:38:50 -05:00

OSMesa: Fix invalid window frame size

This commit is contained in:
Camilla Löwy 2017-01-10 19:01:10 +01:00
parent 221451b817
commit 2ea7f9769a

View File

@ -136,10 +136,6 @@ void _glfwPlatformGetWindowFrameSize(_GLFWwindow* window,
int* left, int* top, int* left, int* top,
int* right, int* bottom) int* right, int* bottom)
{ {
if (right)
*right = window->osmesa.width;
if (bottom)
*top = window->osmesa.height;
} }
void _glfwPlatformIconifyWindow(_GLFWwindow* window) void _glfwPlatformIconifyWindow(_GLFWwindow* window)