improvements regarding docs
git-svn-id: svn+ssh://svn.code.sf.net/p/freeglut/code/trunk/freeglut/freeglut@1538
7f0cb862-5218-0410-a997-
914c9d46530a
/* Check window visible, we don't want to call the position callback when the user minimized the window */
if (window->State.Visible)
{
+ /* Get top-left of non-client area of window, matching coordinates of
+ * glutInitPosition and glutPositionWindow, but not those of
+ * glutGet(GLUT_WINDOW_X) and glutGet(GLUT_WINDOW_Y), which return
+ * top-left of client area.
+ */
GetWindowRect( window->Window.Handle, &windowRect );
if (window->Parent)