From d8db80828d4be98650d2a3295a273cbba3c441ec Mon Sep 17 00:00:00 2001 From: Andreas Streichardt Date: Sat, 2 Dec 2017 11:12:15 +0100 Subject: [PATCH] Add framebuffersize() implementation --- src/android_window.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/android_window.c b/src/android_window.c index 708aeda01..898928182 100644 --- a/src/android_window.c +++ b/src/android_window.c @@ -136,7 +136,10 @@ void _glfwPlatformSetWindowAspectRatio(_GLFWwindow* window, int n, int d) void _glfwPlatformGetFramebufferSize(_GLFWwindow* window, int* width, int* height) { - + // the underlying buffergeometry is currently being initialized from the + // window width and height...so high resolution displays are currently + // not supported...so it is safe to just call GetWindowSize() for now + _glfwPlatformGetWindowSize(window, width, height); } void _glfwPlatformGetWindowFrameSize(_GLFWwindow* window,