git-svn-id: svn://ultimatepp.org/upp/trunk@11837 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
cxl 2018-03-14 09:56:26 +00:00
parent ea40dde7a2
commit 45c1a4dce9
4 changed files with 10 additions and 3 deletions

View file

@ -11,7 +11,7 @@ library(POSIX) "SDL2 SDL2main GL";
library(WIN32) "SDL2.lib SDL2main.lib OpenGL32.lib";
file
SDL20GL.h,
SDL2GL.h,
Keys.h,
Local.h,
After.h,

View file

@ -2,7 +2,8 @@ uses
CtrlLib,
RichEdit,
plugin/DroidFonts,
SDL2Uword;
SDL2Uword,
SDL2GL;
file
test.cpp,
@ -11,5 +12,5 @@ file
help.txt;
mainconfig
"" = "GUI SDL20GL";
"" = "GUI SDL2GL";

View file

@ -59,3 +59,9 @@
#define GUIPLATFORM_INCLUDE <Turtle/Turtle.h>
#define GUIPLATFORM_NOSCROLL
#endif
#ifdef flagSDL2GL
#define GUIPLATFORM_KEYCODES_INCLUDE <SDL2GL/Keys.h>
//need to make SDL_keysym.h known before K_ enum
#define GUIPLATFORM_INCLUDE <SDL2GL/SDL2GL.h>
#endif