Reference SDL as SDL2

Also makes % which disables autolinking uneeded
This commit is contained in:
Dmitry Marakasov 2014-12-19 21:30:10 +03:00
parent fae12fdb7c
commit 99f15b9403
2 changed files with 8 additions and 8 deletions

View File

@ -27,7 +27,7 @@
namespace SDL2pp { namespace SDL2pp {
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////
/// \brief %Exception object representing %SDL error /// \brief %Exception object representing SDL2 error
/// ///
/// \ingroup general /// \ingroup general
/// ///
@ -88,7 +88,7 @@ public:
const char* what() const noexcept; const char* what() const noexcept;
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////
/// \brief Get %SDL error text /// \brief Get SDL2 error text
/// ///
/// \returns Stored result of SDL_GetError() /// \returns Stored result of SDL_GetError()
/// ///

View File

@ -27,7 +27,7 @@
namespace SDL2pp { namespace SDL2pp {
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////
/// \brief Object taking care of %SDL library (de-)initialization /// \brief Object taking care of SDL2 library (de-)initialization
/// ///
/// \ingroup general /// \ingroup general
/// ///
@ -56,7 +56,7 @@ namespace SDL2pp {
class SDL { class SDL {
public: public:
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////
/// \brief Initializes %SDL library /// \brief Initializes SDL2 library
/// ///
/// \param flags Flags to pass to SDL_Init() /// \param flags Flags to pass to SDL_Init()
/// ///
@ -66,7 +66,7 @@ public:
SDL(Uint32 flags); SDL(Uint32 flags);
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////
/// \brief Destructor, deinitializes %SDL library /// \brief Destructor, deinitializes SDL2 library
/// ///
/// \see http://wiki.libsdl.org/SDL_Quit /// \see http://wiki.libsdl.org/SDL_Quit
/// ///
@ -80,7 +80,7 @@ public:
SDL& operator=(SDL&& other) = delete; SDL& operator=(SDL&& other) = delete;
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////
/// \brief Checks which %SDL subsystems were initialized /// \brief Checks which SDL2 subsystems were initialized
/// ///
/// \param flags 0 to return mask of initialized subsystems /// \param flags 0 to return mask of initialized subsystems
/// or any combination of flags to return initialization /// or any combination of flags to return initialization
@ -95,7 +95,7 @@ public:
Uint32 WasInit(Uint32 flags); Uint32 WasInit(Uint32 flags);
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////
/// \brief Initializes additional %SDL subsystems /// \brief Initializes additional SDL2 subsystems
/// ///
/// \param flags Set of flags which determines which subsystems /// \param flags Set of flags which determines which subsystems
/// to initialize /// to initialize
@ -106,7 +106,7 @@ public:
void InitSubSystem(Uint32 flags); void InitSubSystem(Uint32 flags);
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////
/// \brief Deinitializes specific %SDL subsystems /// \brief Deinitializes specific SDL2 subsystems
/// ///
/// \param flags Set of flags which determines which subsystems /// \param flags Set of flags which determines which subsystems
/// to deinitialize /// to deinitialize