Changeset 3579 for trunk/src/opengl/glut/glut_event.c
- Timestamp:
- May 20, 2000, 3:48:23 PM (25 years ago)
- 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 sandervlExp $ */1 /* $Id: glut_event.c,v 1.10 2000-05-20 13:48:22 jeroen Exp $ */ 2 2 /* Copyright (c) Mark J. Kilgard, 1994, 1995, 1996, 1997, 1998. */ 3 3 … … 1073 1073 1074 1074 /* Do the repositioning, moving, and push/pop. */ 1075 1075 1076 SetWindowPos(window->win, 1076 window->desiredStack == (Above ? HWND_TOP : HWND_NOTOPMOST),1077 window->desiredStack == Above ? HWND_TOP : HWND_NOTOPMOST, 1077 1078 changes.left, changes.top, 1078 1079 changes.right - changes.left, changes.bottom - changes.top, 1079 flags );1080 flags & ~SWP_NOSENDCHANGING); 1080 1081 1081 1082 /* Zero out the mask. */ … … 1198 1199 1199 1200 ((GLUTreshapeCB)(window->reshape))(window->width, window->height); 1201 1200 1202 window->forceReshape = False; 1201 1203 … … 1304 1306 1305 1307 if (workMask & GLUT_FINISH_WORK) { 1306 1307 1308 /* Finish work makes sure a glFinish gets done to indirect 1308 1309 rendering contexts. Indirect contexts tend to have much
Note:
See TracChangeset
for help on using the changeset viewer.