X-Git-Url: http://git.mutantstargoat.com/user/nuclear/?a=blobdiff_plain;ds=sidebyside;f=src%2Ffg_internal.h;h=13e57a3e3cbb81a012f2a649c1f23d1a6531f56f;hb=a1e995a2c31f17c9433383e34b32ae3b1111ea38;hp=dbae6769378c3b99acf2c70b0a91982ed7595545;hpb=19242860f0cd6d3f2c3e32e87e15fe5e1151d072;p=freeglut diff --git a/src/fg_internal.h b/src/fg_internal.h index dbae676..13e57a3 100644 --- a/src/fg_internal.h +++ b/src/fg_internal.h @@ -219,9 +219,9 @@ typedef void (* FGCBMultiButton )( int, int, int, int, int ); typedef void (* FGCBMultiMotion )( int, int, int ); typedef void (* FGCBMultiPassive )( int, int, int ); -typedef void (* FGCBFixMyNameInitContext)(); -typedef void (* FGCBFixMyNamePause)(); -typedef void (* FGCBFixMyNameResume)(); +typedef void (* FGCBInitContext)(); +typedef void (* FGCBPause)(); +typedef void (* FGCBResume)(); /* The global callbacks type definitions */ typedef void (* FGCBIdle )( void ); @@ -402,7 +402,7 @@ struct tagSFG_WindowState GLboolean IsFullscreen; /* is the window fullscreen? */ - GLboolean NeedToFixMyNameInitContext; /* are OpenGL context/resources loaded? */ + GLboolean NeedToInitContext; /* are OpenGL context/resources loaded? */ }; @@ -535,9 +535,9 @@ enum CB_MultiPassive, /* Mobile platforms LifeCycle */ - CB_FixMyNameInitContext, - CB_FixMyNamePause, - CB_FixMyNameResume, + CB_InitContext, + CB_Pause, + CB_Resume, /* Presently ignored */ CB_Select,