From 2ea7f9769a7269365a35c3add13a7aa928397ad7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Camilla=20L=C3=B6wy?= Date: Tue, 10 Jan 2017 19:01:10 +0100 Subject: [PATCH] OSMesa: Fix invalid window frame size --- src/osmesa_window.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/osmesa_window.c b/src/osmesa_window.c index 7e747808..33649246 100644 --- a/src/osmesa_window.c +++ b/src/osmesa_window.c @@ -136,10 +136,6 @@ void _glfwPlatformGetWindowFrameSize(_GLFWwindow* window, int* left, int* top, int* right, int* bottom) { - if (right) - *right = window->osmesa.width; - if (bottom) - *top = window->osmesa.height; } void _glfwPlatformIconifyWindow(_GLFWwindow* window)