Ignore:
Timestamp:
May 20, 2000, 3:48:23 PM (25 years ago)
Author:
jeroen
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/opengl/glut/glut_event.c

    r3086 r3579  
    1 /* $Id: glut_event.c,v 1.9 2000-03-11 17:07:44 sandervl Exp $ */
     1/* $Id: glut_event.c,v 1.10 2000-05-20 13:48:22 jeroen Exp $ */
    22/* Copyright (c) Mark J. Kilgard, 1994, 1995, 1996, 1997, 1998. */
    33
     
    10731073
    10741074      /* Do the repositioning, moving, and push/pop. */
     1075
    10751076      SetWindowPos(window->win,
    1076         window->desiredStack == (Above ? HWND_TOP : HWND_NOTOPMOST),
     1077        window->desiredStack == Above ? HWND_TOP : HWND_NOTOPMOST,
    10771078        changes.left, changes.top,
    10781079        changes.right - changes.left, changes.bottom - changes.top,
    1079         flags);
     1080        flags & ~SWP_NOSENDCHANGING);
    10801081
    10811082      /* Zero out the mask. */
     
    11981199
    11991200      ((GLUTreshapeCB)(window->reshape))(window->width, window->height);
     1201
    12001202      window->forceReshape = False;
    12011203
     
    13041306
    13051307  if (workMask & GLUT_FINISH_WORK) {
    1306 
    13071308    /* Finish work makes sure a glFinish gets done to indirect
    13081309       rendering contexts.  Indirect contexts tend to have much
Note: See TracChangeset for help on using the changeset viewer.