diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-09-07 01:39:55 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-09-07 01:56:53 +0300 |
commit | 9ea6291b7259de2935d1a8fe3b45ef8eb2c67ede (patch) | |
tree | f30d5dfa2419260ada62144dc63e1dcb2ee92198 /src/utils | |
parent | bfe9b1eeb587254d92c3ebb338b50ce1e7dfac79 (diff) | |
download | plus-9ea6291b7259de2935d1a8fe3b45ef8eb2c67ede.tar.gz plus-9ea6291b7259de2935d1a8fe3b45ef8eb2c67ede.tar.bz2 plus-9ea6291b7259de2935d1a8fe3b45ef8eb2c67ede.tar.xz plus-9ea6291b7259de2935d1a8fe3b45ef8eb2c67ede.zip |
Add SDL2 errors logging.
Diffstat (limited to 'src/utils')
-rw-r--r-- | src/utils/sdl2helper.cpp | 6 | ||||
-rw-r--r-- | src/utils/sdl2helper.h | 2 | ||||
-rw-r--r-- | src/utils/sdlhelper.cpp | 4 | ||||
-rw-r--r-- | src/utils/sdlhelper.h | 2 |
4 files changed, 14 insertions, 0 deletions
diff --git a/src/utils/sdl2helper.cpp b/src/utils/sdl2helper.cpp index d7df14af1..4f99dc512 100644 --- a/src/utils/sdl2helper.cpp +++ b/src/utils/sdl2helper.cpp @@ -25,6 +25,7 @@ #include "logger.h" #include "utils/foreach.h" +#include "utils/sdl2logger.h" #include "utils/stringutils.h" PRAGMA48(GCC diagnostic push) @@ -182,4 +183,9 @@ void SDL::makeCurrentContext(void *const context A_UNUSED) { } +void SDL::initLogger() +{ + SDL2Logger::init(); +} + #endif // USE_SDL2 diff --git a/src/utils/sdl2helper.h b/src/utils/sdl2helper.h index 70d3ffa90..04a258014 100644 --- a/src/utils/sdl2helper.h +++ b/src/utils/sdl2helper.h @@ -61,6 +61,8 @@ namespace SDL const int profile); void makeCurrentContext(void *const context); + + void initLogger(); } // namespace SDL #endif // USE_SDL2 diff --git a/src/utils/sdlhelper.cpp b/src/utils/sdlhelper.cpp index dca31ab5e..821eb40a5 100644 --- a/src/utils/sdlhelper.cpp +++ b/src/utils/sdlhelper.cpp @@ -182,4 +182,8 @@ void SDL::makeCurrentContext(void *const context A_UNUSED) } #endif // defined(USE_X11) && defined(USE_OPENGL) +void SDL::initLogger() +{ +} + #endif // USE_SDL2 diff --git a/src/utils/sdlhelper.h b/src/utils/sdlhelper.h index 0ba99df10..5e8c31e15 100644 --- a/src/utils/sdlhelper.h +++ b/src/utils/sdlhelper.h @@ -67,6 +67,8 @@ namespace SDL const int profile); void makeCurrentContext(void *const context); + + void initLogger(); } // namespace SDL #endif // USE_SDL2 |