this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Removed old documentation and added a mainpage file.

+59 -1
+1 -1
Doxyfile
··· 32 32 # This could be handy for archiving the generated documentation or 33 33 # if some version control system is used. 34 34 35 - PROJECT_NUMBER = 0.0 35 + PROJECT_NUMBER = 0.6.0 36 36 37 37 # Using the PROJECT_BRIEF tag one can provide an optional one line description 38 38 # for a project that appears at the top of each page and should give viewer
+58
SDL_gpu/mainpage.dox
··· 1 + /*! 2 + \mainpage 3 + 4 + SDL_gpu is a C code library for making hardware-accelerated 2D graphics easy. 5 + 6 + SDL_gpu is licensed under the terms of the MIT License. 7 + See LICENSE.txt for details of the usage license granted to you for this code. 8 + 9 + 10 + \section latest_source LATEST SOURCE 11 + 12 + SDL_gpu is hosted on Google Code (http://code.google.com/p/sdl-gpu). You can check out the latest version of the source code with Subversion: 13 + svn checkout http://sdl-gpu.googlecode.com/svn/trunk/ sdl-gpu 14 + 15 + To check out everything, including the pre-generated documentation: 16 + svn checkout http://sdl-gpu.googlecode.com/svn/ sdl-gpu 17 + 18 + For just the current library code, use: 19 + svn checkout http://sdl-gpu.googlecode.com/svn/trunk/ sdl-gpu 20 + 21 + 22 + \section dependencies DEPENDENCIES 23 + 24 + SDL 1.2 or SDL 2.0 (www.libsdl.org) 25 + A rendering backend 26 + Currently implemented: OpenGL 1.1, OpenGL 2.0, OpenGL 3.0, OpenGL ES 1.1, OpenGL ES 2.0 27 + 28 + 29 + \section building BUILDING 30 + 31 + SDL_gpu uses CMake (www.cmake.org) to coordinate the library build process. CMake is available as a GUI program or on the command line. 32 + 33 + For Linux/UNIX systems, run CMake in the base directory: 34 + cmake -G "Unix Makefiles" 35 + make 36 + sudo make install 37 + 38 + For Linux/UNIX systems, changing the default installation directory can be done like so: 39 + cmake -G "Unix Makefiles" -DCMAKE_INSTALL_PREFIX=/usr 40 + 41 + For Windows systems, you can use cmake-gui and select appropriate options in there (warning: cmake-gui is messy!). 42 + 43 + 44 + \section including_linking INCLUDING / LINKING 45 + 46 + Add the include for SDL_gpu.h to your sources. Link to SDL_gpu (libSDL_gpu.a) or SDL2_gpu (if you use SDL2). 47 + 48 + 49 + \section documentation DOCUMENTATION 50 + 51 + Documentation is automatically generated with Doxygen (http://sourceforge.net/projects/doxygen). 52 + Pre-generated documentation can be found in the repository's base documentation directory. 53 + 54 + */ 55 + 56 + 57 + 58 +