Fixed comments at conditional compilation macros.
parent
c3186d5ee9
commit
fd8b7c1ca3
|
@ -124,6 +124,6 @@ BOOL WIN_IsWindowsVistaOrGreater()
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif /* __WIN32__ */
|
#endif /* __WIN32__ || __WINRT__ */
|
||||||
|
|
||||||
/* vi: set ts=4 sw=4 expandtab: */
|
/* vi: set ts=4 sw=4 expandtab: */
|
||||||
|
|
|
@ -110,5 +110,5 @@ static const unsigned char default_cmask[] = {
|
||||||
0x03, 0x00
|
0x03, 0x00
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif /* TRUE_MACINTOSH_CURSOR */
|
#endif /* USE_MACOS_CURSOR */
|
||||||
/* vi: set ts=4 sw=4 expandtab: */
|
/* vi: set ts=4 sw=4 expandtab: */
|
||||||
|
|
|
@ -43,7 +43,7 @@ glDrawTexiOES(GLint x, GLint y, GLint z, GLint width, GLint height)
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif /* PANDORA */
|
#endif /* SDL_VIDEO_DRIVER_PANDORA */
|
||||||
|
|
||||||
/* OpenGL ES 1.1 renderer implementation, based on the OpenGL renderer */
|
/* OpenGL ES 1.1 renderer implementation, based on the OpenGL renderer */
|
||||||
|
|
||||||
|
@ -206,7 +206,7 @@ static int GLES_LoadFunctions(GLES_RenderData * data)
|
||||||
do { \
|
do { \
|
||||||
data->func = SDL_GL_GetProcAddress(#func); \
|
data->func = SDL_GL_GetProcAddress(#func); \
|
||||||
} while ( 0 );
|
} while ( 0 );
|
||||||
#endif /* _SDL_NOGETPROCADDR_ */
|
#endif /* __SDL_NOGETPROCADDR__ */
|
||||||
|
|
||||||
#include "SDL_glesfuncs.h"
|
#include "SDL_glesfuncs.h"
|
||||||
#undef SDL_PROC
|
#undef SDL_PROC
|
||||||
|
|
|
@ -300,7 +300,7 @@ static int GLES2_LoadFunctions(GLES2_DriverContext * data)
|
||||||
return SDL_SetError("Couldn't load GLES2 function %s: %s\n", #func, SDL_GetError()); \
|
return SDL_SetError("Couldn't load GLES2 function %s: %s\n", #func, SDL_GetError()); \
|
||||||
} \
|
} \
|
||||||
} while ( 0 );
|
} while ( 0 );
|
||||||
#endif /* _SDL_NOGETPROCADDR_ */
|
#endif /* __SDL_NOGETPROCADDR__ */
|
||||||
|
|
||||||
#include "SDL_gles2funcs.h"
|
#include "SDL_gles2funcs.h"
|
||||||
#undef SDL_PROC
|
#undef SDL_PROC
|
||||||
|
|
|
@ -580,7 +580,7 @@ BlitRGBtoRGBPixelAlphaMMX3DNOW(SDL_BlitInfo * info)
|
||||||
_mm_empty();
|
_mm_empty();
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif /* __MMX__ */
|
#endif /* __3dNOW__ */
|
||||||
|
|
||||||
/* 16bpp special case for per-surface alpha=50%: blend 2 pixels in parallel */
|
/* 16bpp special case for per-surface alpha=50%: blend 2 pixels in parallel */
|
||||||
|
|
||||||
|
|
|
@ -27,6 +27,6 @@ extern int Emscripten_CreateWindowFramebuffer(_THIS, SDL_Window * window, Uint32
|
||||||
extern int Emscripten_UpdateWindowFramebuffer(_THIS, SDL_Window * window, const SDL_Rect * rects, int numrects);
|
extern int Emscripten_UpdateWindowFramebuffer(_THIS, SDL_Window * window, const SDL_Rect * rects, int numrects);
|
||||||
extern void Emscripten_DestroyWindowFramebuffer(_THIS, SDL_Window * window);
|
extern void Emscripten_DestroyWindowFramebuffer(_THIS, SDL_Window * window);
|
||||||
|
|
||||||
#endif /* _SDL_emsctiptenframebuffer_h */
|
#endif /* _SDL_emscriptenframebuffer_h */
|
||||||
|
|
||||||
/* vi: set ts=4 sw=4 expandtab: */
|
/* vi: set ts=4 sw=4 expandtab: */
|
||||||
|
|
|
@ -63,7 +63,7 @@ MIR_RestoreWindow(_THIS, SDL_Window* window);
|
||||||
extern SDL_bool
|
extern SDL_bool
|
||||||
MIR_GetWindowWMInfo(_THIS, SDL_Window* window, SDL_SysWMinfo* info);
|
MIR_GetWindowWMInfo(_THIS, SDL_Window* window, SDL_SysWMinfo* info);
|
||||||
|
|
||||||
#endif /* _SDL_mirwindow */
|
#endif /* _SDL_mirwindow_h */
|
||||||
|
|
||||||
/* vi: set ts=4 sw=4 expandtab: */
|
/* vi: set ts=4 sw=4 expandtab: */
|
||||||
|
|
||||||
|
|
|
@ -169,6 +169,6 @@ static UIKitKeyInfo unicharToUIKeyInfoTable[] = {
|
||||||
/* 127 */{ SDL_SCANCODE_BACKSPACE, KMOD_SHIFT }
|
/* 127 */{ SDL_SCANCODE_BACKSPACE, KMOD_SHIFT }
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif /* UIKitKeyInfo */
|
#endif /* _UIKIT_KeyInfo */
|
||||||
|
|
||||||
/* vi: set ts=4 sw=4 expandtab: */
|
/* vi: set ts=4 sw=4 expandtab: */
|
||||||
|
|
|
@ -35,6 +35,6 @@ extern SDL_bool WINRT_UsingRelativeMouseMode;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif /* _SDL_windowsmouse_h */
|
#endif /* _SDL_winrtmouse_h */
|
||||||
|
|
||||||
/* vi: set ts=4 sw=4 expandtab: */
|
/* vi: set ts=4 sw=4 expandtab: */
|
||||||
|
|
Loading…
Reference in New Issue