mirror of
https://github.com/glfw/glfw.git
synced 2026-09-22 16:52:57 +00:00
Added glfwGetWindowPos.
This commit is contained in:
@@ -1215,6 +1215,14 @@ static void processSingleEvent(void)
|
||||
window->height);
|
||||
}
|
||||
}
|
||||
|
||||
if (event.xconfigure.x != window->positionX ||
|
||||
event.xconfigure.y != window->positionY)
|
||||
{
|
||||
window->positionX = event.xconfigure.x;
|
||||
window->positionY = event.xconfigure.y;
|
||||
}
|
||||
|
||||
break;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user