omar 60fb7d31fd Examples: SDL2: Enabling vsync. Using scancode consistently, fixed keyboard weirdness. 7 năm trước cách đây
..
Makefile 91d77be36e Examples: Makefile leave CXX alone, instead leave commented out options. (nb: codeship doesn't seem have clang++) 7 năm trước cách đây
README.md 3aa4a108ed Examples: SDL/OpenGL3: Fixed linking documentation for MacOSX (#463) 9 năm trước cách đây
build_win32.bat c3d9e0a6eb Examples: SDL2: Tweaked batch files for Win32. 8 năm trước cách đây
imgui_impl_sdl_gl3.cpp 60fb7d31fd Examples: SDL2: Enabling vsync. Using scancode consistently, fixed keyboard weirdness. 7 năm trước cách đây
imgui_impl_sdl_gl3.h 36f00811b9 Examples: Comments to guide people unfamiliar with the librairies used. 8 năm trước cách đây
main.cpp 60fb7d31fd Examples: SDL2: Enabling vsync. Using scancode consistently, fixed keyboard weirdness. 7 năm trước cách đây

README.md

How to Build

  • On Windows with Visual Studio's CLI

    set SDL2DIR=path_to_your_sdl2_folder
    cl /Zi /MD /I ..\.. /I ..\libs\gl3w /I %SDL2DIR%\include main.cpp imgui_impl_sdl_gl3.cpp ..\..\imgui*.cpp ..\libs\gl3w\GL\gl3w.c /link /libpath:%SDL2DIR%\lib\x86 SDL2.lib SDL2main.lib opengl32.lib /subsystem:console
    
  • On Linux and similar Unixes

    c++ `sdl2-config --cflags` -I ../.. -I ../libs/gl3w main.cpp imgui_impl_sdl_gl3.cpp ../../imgui*.cpp ../libs/gl3w/GL/gl3w.c `sdl2-config --libs` -lGL -ldl -o sdl2example
    
  • On Mac OS X

    brew install sdl2
    c++ `sdl2-config --cflags` -I ../.. -I ../libs/gl3w main.cpp imgui_impl_sdl_gl3.cpp ../../imgui*.cpp ../libs/gl3w/GL/gl3w.c `sdl2-config --libs` -framework OpenGl -framework CoreFoundation -o sdl2example