···1515To check out everything, including the pre-generated documentation:
1616svn checkout http://sdl-gpu.googlecode.com/svn/ sdl-gpu
17171818+For just the current library code, use:
1919+svn checkout http://sdl-gpu.googlecode.com/svn/trunk/ sdl-gpu
2020+18211922============
2023DEPENDENCIES
···22252326SDL 1.2 or SDL 2.0 (www.libsdl.org)
2427A rendering backend
2525- Currently implemented: OpenGL, OpenGLES_1
2828+ Currently implemented: OpenGL 1.1, OpenGL 2.0, OpenGLESv1
262927302831===================
2932SELECTING RENDERERS
3033===================
31343232-Currently, the build process does not handle the selection of renderers to include in the library.
3333-You must manually change the file references in <trunk>/CMakeLists.txt and <trunk>/SDL_gpu/CMakeLists.txt.
3434-Also, the renderer must be specified in GPU_RegisterRenderers() in SDL_gpu_Renderer.c.
3535+Currently, multiple renderers are not supported. The renderer can be selected by defining SDL_GPU_USE_OPENGL, SDL_GPU_USE_OPENGLES, and SDL_GPU_USE_OPENGLv1 according to your needs.
3636+35373638========
3739BUILDING