Per Nigel Stewart's comments, converted
#ifdef TARGET_HOST_... to: #if TARGET_HOST_... in src/freeglut_init.c. These changes should not have any functional impact at this time, but you don't want bad examples lying around to trip people up later. git-svn-id: https://svn.code.sf.net/p/freeglut/code/trunk@203 7f0cb862-5218-0410-a997-914c9d46530a
This commit is contained in:
parent
93d944835a
commit
a3b3a309dd
@ -1076,42 +1076,42 @@ void FGAPIENTRY glutInitDisplayString( const char* displayMode )
|
||||
break ;
|
||||
|
||||
case 20 : /* "win32pdf": matches the Win32 Pixel Format Descriptor by number */
|
||||
#ifdef TARGET_HOST_WIN32
|
||||
#if TARGET_HOST_WIN32
|
||||
#endif
|
||||
break ;
|
||||
|
||||
case 21 : /* "xvisual": matches the X visual ID by number */
|
||||
#ifdef TARGET_HOST_UNIX_X11
|
||||
#if TARGET_HOST_UNIX_X11
|
||||
#endif
|
||||
break ;
|
||||
|
||||
case 22 : /* "xstaticgray": boolean indicating if the frame buffer configuration's X visual is of type StaticGray */
|
||||
#ifdef TARGET_HOST_UNIX_X11
|
||||
#if TARGET_HOST_UNIX_X11
|
||||
#endif
|
||||
break ;
|
||||
|
||||
case 23 : /* "xgrayscale": boolean indicating if the frame buffer configuration's X visual is of type GrayScale */
|
||||
#ifdef TARGET_HOST_UNIX_X11
|
||||
#if TARGET_HOST_UNIX_X11
|
||||
#endif
|
||||
break ;
|
||||
|
||||
case 24 : /* "xstaticcolor": boolean indicating if the frame buffer configuration's X visual is of type StaticColor */
|
||||
#ifdef TARGET_HOST_UNIX_X11
|
||||
#if TARGET_HOST_UNIX_X11
|
||||
#endif
|
||||
break ;
|
||||
|
||||
case 25 : /* "xpseudocolor": boolean indicating if the frame buffer configuration's X visual is of type PseudoColor */
|
||||
#ifdef TARGET_HOST_UNIX_X11
|
||||
#if TARGET_HOST_UNIX_X11
|
||||
#endif
|
||||
break ;
|
||||
|
||||
case 26 : /* "xtruecolor": boolean indicating if the frame buffer configuration's X visual is of type TrueColor */
|
||||
#ifdef TARGET_HOST_UNIX_X11
|
||||
#if TARGET_HOST_UNIX_X11
|
||||
#endif
|
||||
break ;
|
||||
|
||||
case 27 : /* "xdirectcolor": boolean indicating if the frame buffer configuration's X visual is of type DirectColor */
|
||||
#ifdef TARGET_HOST_UNIX_X11
|
||||
#if TARGET_HOST_UNIX_X11
|
||||
#endif
|
||||
break ;
|
||||
|
||||
|
Reference in New Issue
Block a user