···11/*!
22\mainpage
3344-SDL_gpu is a C code library for making hardware-accelerated 2D graphics easy.
44+<p>SDL_gpu is a C code library for making hardware-accelerated 2D graphics easy.</p>
5566-SDL_gpu is licensed under the terms of the MIT License.
77-See LICENSE.txt for details of the usage license granted to you for this code.
66+<p>SDL_gpu is licensed under the terms of the MIT License.<br>
77+See LICENSE.txt for details of the usage license granted to you for this code.</p>
88+99+<p>A good way to use this documentation is to start on the <a href="modules.html">Modules page</a>.</p>
8109111012\section latest_source LATEST SOURCE
11131212-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:
1313-svn checkout http://sdl-gpu.googlecode.com/svn/trunk/ sdl-gpu
1414+<p>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:<br>
1515+<pre>svn checkout http://sdl-gpu.googlecode.com/svn/trunk/ sdl-gpu</pre></p>
14161515-To check out everything, including the pre-generated documentation:
1616-svn checkout http://sdl-gpu.googlecode.com/svn/ sdl-gpu
1717+<p>To check out everything, including the pre-generated documentation:<br>
1818+<pre>svn checkout http://sdl-gpu.googlecode.com/svn/ sdl-gpu</pre></p>
17191818-For just the current library code, use:
1919-svn checkout http://sdl-gpu.googlecode.com/svn/trunk/ sdl-gpu
2020+<p>For just the current library code, use:<br>
2121+<pre>svn checkout http://sdl-gpu.googlecode.com/svn/trunk/ sdl-gpu</pre></p>
202221232224\section dependencies DEPENDENCIES
23252424-SDL 1.2 or SDL 2.0 (www.libsdl.org)
2525-A rendering backend
2626- Currently implemented: OpenGL 1.1, OpenGL 2.0, OpenGL 3.0, OpenGL ES 1.1, OpenGL ES 2.0
2626+<p>SDL 1.2 or SDL 2.0 (www.libsdl.org)<br>
2727+A rendering backend<br>
2828+ Currently implemented: OpenGL 1.1, OpenGL 2.0, OpenGL 3.0, OpenGL ES 1.1, OpenGL ES 2.0</p>
272928302931\section building BUILDING
30323131-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.
3333+<p>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.</p>
32343333-For Linux/UNIX systems, run CMake in the base directory:
3434-cmake -G "Unix Makefiles"
3535+<p>For Linux/UNIX systems, run CMake in the base directory:<br>
3636+<pre>cmake -G "Unix Makefiles"
3537make
3636-sudo make install
3838+sudo make install</pre></p>
37393838-For Linux/UNIX systems, changing the default installation directory can be done like so:
3939-cmake -G "Unix Makefiles" -DCMAKE_INSTALL_PREFIX=/usr
4040+<p>For Linux/UNIX systems, changing the default installation directory can be done like so:<br>
4141+<pre>cmake -G "Unix Makefiles" -DCMAKE_INSTALL_PREFIX=/usr</pre></p>
40424141-For Windows systems, you can use cmake-gui and select appropriate options in there (warning: cmake-gui is messy!).
4343+<p>For Windows systems, you can use cmake-gui and select appropriate options in there (warning: cmake-gui is messy!).</p>
424443454446\section including_linking INCLUDING / LINKING
45474646-Add the include for SDL_gpu.h to your sources. Link to SDL_gpu (libSDL_gpu.a) or SDL2_gpu (if you use SDL2).
4848+<p>Add the include for SDL_gpu.h to your sources. Link to SDL_gpu (libSDL_gpu.a) or SDL2_gpu (if you use SDL2).</p>
474948504951\section documentation DOCUMENTATION
50525151-Documentation is automatically generated with Doxygen (http://sourceforge.net/projects/doxygen).
5252-Pre-generated documentation can be found in the repository's base documentation directory.
5353+<p>Documentation is automatically generated with Doxygen (http://sourceforge.net/projects/doxygen).<br>
5454+Pre-generated documentation can be found in the repository's base documentation directory.</p>
53555456*/
5557