Ignore:
Timestamp:
Mar 5, 2000, 11:21:10 AM (25 years ago)
Author:
jeroen
Message:

* empty log message *

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:43 jeroen Exp $ */
     1/* $Id: glut_win.c,v 1.5 2000-03-05 10:19:38 jeroen Exp $ */
    22/* Copyright (c) Mark J. Kilgard, 1994, 1997.  */
    33
     
    403403}
    404404
    405 void GLAPIENTRY
     405void CDECL
    406406__glutDefaultDisplay(void)
    407407{
     
    413413}
    414414
    415 void GLAPIENTRY
     415void CDECL
    416416__glutDefaultReshape(int width, int height)
    417417{
     
    10071007{
    10081008  if (status == GLUT_HIDDEN || status == GLUT_FULLY_COVERED)
    1009     __glutCurrentWindow->visibility(GLUT_NOT_VISIBLE);
     1009    ((GLUTvisibilityCB)(__glutCurrentWindow->visibility))(GLUT_NOT_VISIBLE);
    10101010  else
    1011     __glutCurrentWindow->visibility(GLUT_VISIBLE);
     1011    ((GLUTvisibilityCB)(__glutCurrentWindow->visibility))(GLUT_VISIBLE);
    10121012}
    10131013
Note: See TracChangeset for help on using the changeset viewer.