From: Diederick Niehorster Date: Fri, 1 Mar 2013 07:15:20 +0000 (+0000) Subject: document coordinates returned by glutPositionFunc, other doc X-Git-Url: http://git.mutantstargoat.com/user/nuclear/?a=commitdiff_plain;h=a5b0c9c64f5c4a35b82af7156f90bbae59d9c405;p=freeglut document coordinates returned by glutPositionFunc, other doc improvements regarding docs git-svn-id: svn+ssh://svn.code.sf.net/p/freeglut/code/trunk/freeglut/freeglut@1538 7f0cb862-5218-0410-a997-914c9d46530a --- diff --git a/src/mswin/fg_main_mswin.c b/src/mswin/fg_main_mswin.c index be412ba..a791222 100644 --- a/src/mswin/fg_main_mswin.c +++ b/src/mswin/fg_main_mswin.c @@ -536,6 +536,11 @@ LRESULT CALLBACK fgPlatformWindowProc( HWND hWnd, UINT uMsg, WPARAM wParam, LPAR /* 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)