X-Git-Url: http://git.mutantstargoat.com/user/nuclear/?a=blobdiff_plain;ds=sidebyside;f=src%2Fmswin%2Ffg_state_mswin.c;h=b8f3e00dae0416ac2065c205ee15c4baaa389e14;hb=b1ed93dd348f7b8f3bd2c75474f5d4151d502f1f;hp=913e113da530a06f8aaddb0a2ef5af6b1aef1585;hpb=aa471c243b7d0b68de430fe3d1167d081bc31447;p=freeglut diff --git a/src/mswin/fg_state_mswin.c b/src/mswin/fg_state_mswin.c index 913e113..b8f3e00 100644 --- a/src/mswin/fg_state_mswin.c +++ b/src/mswin/fg_state_mswin.c @@ -32,7 +32,7 @@ extern GLboolean fgSetupPixelFormat( SFG_Window* window, GLboolean checkOnly, unsigned char layer_type ); -/* +/* * Helper functions for getting client area from the window rect * and the window rect from the client area given the style of the window * (or a valid window pointer from which the style can be queried). @@ -146,7 +146,7 @@ int fgPlatformGlutGet ( GLenum eWhat ) HDC hdc = fgStructure.CurrentWindow->Window.pContext.Device; int iPixelFormat = GetPixelFormat( hdc ); DescribePixelFormat(hdc, iPixelFormat, sizeof(PIXELFORMATDESCRIPTOR), &pfd); - + returnValue = pfd.cColorBits; if (pfd.iPixelType==PFD_TYPE_RGBA) returnValue += pfd.cAlphaBits; @@ -183,7 +183,7 @@ int fgPlatformGlutGet ( GLenum eWhat ) GetWindowRect( fgStructure.CurrentWindow->Window.Handle, &winRect); #else ClientToScreen(fgStructure.CurrentWindow->Window.Handle, &topLeft); - + if (fgStructure.CurrentWindow->Parent) /* For child window, we should return relative to upper-left * of parent's client area. @@ -257,7 +257,7 @@ int fgPlatformGlutGet ( GLenum eWhat ) */ borderWidth = ((winRect.right-winRect.left)-(clientRect.right-clientRect.left))/2; captionHeight = (winRect.bottom-winRect.top)-(clientRect.bottom-clientRect.top)-borderWidth; /* include top border in caption height */ - + switch( eWhat ) { case GLUT_WINDOW_BORDER_WIDTH: @@ -289,7 +289,7 @@ int fgPlatformGlutGet ( GLenum eWhat ) break; } - return -1; + return -1; }