diff --git a/freeglut/freeglut/src/Common/freeglut_init.c b/freeglut/freeglut/src/Common/freeglut_init.c index 823fab4..76ec454 100644 --- a/freeglut/freeglut/src/Common/freeglut_init.c +++ b/freeglut/freeglut/src/Common/freeglut_init.c @@ -44,7 +44,7 @@ /* -- GLOBAL VARIABLES ----------------------------------------------------- */ /* - * A structure pointed by g_pDisplay holds all information + * A structure pointed by fgDisplay holds all information * regarding the display, screen, root window etc. */ SFG_Display fgDisplay; @@ -350,7 +350,7 @@ void FGAPIENTRY glutInit( int* pargc, char** argv ) fgPlatformInitialize( displayName ); /* - * Geometry parsing deffered until here because we may need the screen + * Geometry parsing deferred until here because we may need the screen * size. */ diff --git a/freeglut/freeglut/src/Common/freeglut_internal.h b/freeglut/freeglut/src/Common/freeglut_internal.h index bbd7f62..45db259 100644 --- a/freeglut/freeglut/src/Common/freeglut_internal.h +++ b/freeglut/freeglut/src/Common/freeglut_internal.h @@ -937,7 +937,6 @@ void fgWarning( const char *fmt, ... ); SFG_Proc fgPlatformGetProcAddress( const char *procName ); -/* Window functions needed for Platform implementations */ /* pushing attribute/value pairs into an array */ #define ATTRIB(a) attributes[where++]=(a) #define ATTRIB_VAL(a,v) {ATTRIB(a); ATTRIB(v);} diff --git a/freeglut/freeglut/src/Common/freeglut_videoresize.c b/freeglut/freeglut/src/Common/freeglut_videoresize.c index 4d00fb9..c367d92 100644 --- a/freeglut/freeglut/src/Common/freeglut_videoresize.c +++ b/freeglut/freeglut/src/Common/freeglut_videoresize.c @@ -42,9 +42,3 @@ void FGAPIENTRY glutVideoPan( int x, int y, int w, int h ) { /* Not implement /*** END OF FILE ***/ - - - - - -