mirror of
https://github.com/glfw/glfw.git
synced 2024-11-22 13:04:35 +00:00
Fix resolution for reopen test
This commit is contained in:
parent
755f913b02
commit
30306e5470
@ -122,6 +122,7 @@ int main(int argc, char** argv)
|
|||||||
|
|
||||||
for (;;)
|
for (;;)
|
||||||
{
|
{
|
||||||
|
int width, height;
|
||||||
GLFWmonitor* monitor = NULL;
|
GLFWmonitor* monitor = NULL;
|
||||||
|
|
||||||
if (count % 2 == 0)
|
if (count % 2 == 0)
|
||||||
@ -131,7 +132,19 @@ int main(int argc, char** argv)
|
|||||||
monitor = monitors[rand() % monitorCount];
|
monitor = monitors[rand() % monitorCount];
|
||||||
}
|
}
|
||||||
|
|
||||||
window = open_window(640, 480, monitor);
|
if (monitor)
|
||||||
|
{
|
||||||
|
const GLFWvidmode* mode = glfwGetVideoMode(monitor);
|
||||||
|
width = mode->width;
|
||||||
|
height = mode->height;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
width = 640;
|
||||||
|
height = 480;
|
||||||
|
}
|
||||||
|
|
||||||
|
window = open_window(width, height, monitor);
|
||||||
if (!window)
|
if (!window)
|
||||||
{
|
{
|
||||||
glfwTerminate();
|
glfwTerminate();
|
||||||
|
Loading…
Reference in New Issue
Block a user