A bit of comment clean-up per e-mail from Diederick Niehorster dated 2/5/12 at 9:26 AM

git-svn-id: https://svn.code.sf.net/p/freeglut/code/trunk@1080 7f0cb862-5218-0410-a997-914c9d46530a
This commit is contained in:
fayjf 2012-02-25 06:06:52 +00:00
parent 9c6c6850d0
commit 2774b223ff
3 changed files with 2 additions and 9 deletions

View File

@ -44,7 +44,7 @@
/* -- GLOBAL VARIABLES ----------------------------------------------------- */ /* -- 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. * regarding the display, screen, root window etc.
*/ */
SFG_Display fgDisplay; SFG_Display fgDisplay;
@ -350,7 +350,7 @@ void FGAPIENTRY glutInit( int* pargc, char** argv )
fgPlatformInitialize( displayName ); 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. * size.
*/ */

View File

@ -937,7 +937,6 @@ void fgWarning( const char *fmt, ... );
SFG_Proc fgPlatformGetProcAddress( const char *procName ); SFG_Proc fgPlatformGetProcAddress( const char *procName );
/* Window functions needed for Platform implementations */
/* pushing attribute/value pairs into an array */ /* pushing attribute/value pairs into an array */
#define ATTRIB(a) attributes[where++]=(a) #define ATTRIB(a) attributes[where++]=(a)
#define ATTRIB_VAL(a,v) {ATTRIB(a); ATTRIB(v);} #define ATTRIB_VAL(a,v) {ATTRIB(a); ATTRIB(v);}

View File

@ -42,9 +42,3 @@ void FGAPIENTRY glutVideoPan( int x, int y, int w, int h ) { /* Not implement
/*** END OF FILE ***/ /*** END OF FILE ***/