Changeset 3022 for trunk/src/opengl/glut/glut_win.c
- Timestamp:
- Mar 5, 2000, 11:21:10 AM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/opengl/glut/glut_win.c
r3000 r3022 1 /* $Id: glut_win.c,v 1. 4 2000-03-04 19:33:43jeroen Exp $ */1 /* $Id: glut_win.c,v 1.5 2000-03-05 10:19:38 jeroen Exp $ */ 2 2 /* Copyright (c) Mark J. Kilgard, 1994, 1997. */ 3 3 … … 403 403 } 404 404 405 void GLAPIENTRY405 void CDECL 406 406 __glutDefaultDisplay(void) 407 407 { … … 413 413 } 414 414 415 void GLAPIENTRY415 void CDECL 416 416 __glutDefaultReshape(int width, int height) 417 417 { … … 1007 1007 { 1008 1008 if (status == GLUT_HIDDEN || status == GLUT_FULLY_COVERED) 1009 __glutCurrentWindow->visibility(GLUT_NOT_VISIBLE);1009 ((GLUTvisibilityCB)(__glutCurrentWindow->visibility))(GLUT_NOT_VISIBLE); 1010 1010 else 1011 __glutCurrentWindow->visibility(GLUT_VISIBLE);1011 ((GLUTvisibilityCB)(__glutCurrentWindow->visibility))(GLUT_VISIBLE); 1012 1012 } 1013 1013
Note:
See TracChangeset
for help on using the changeset viewer.