summaryrefslogtreecommitdiff
path: root/src/render/graphics.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/render/graphics.h')
-rw-r--r--src/render/graphics.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/render/graphics.h b/src/render/graphics.h
index 36f3ed721..6eb18dfab 100644
--- a/src/render/graphics.h
+++ b/src/render/graphics.h
@@ -120,6 +120,8 @@ class Graphics notfinal
*/
virtual ~Graphics();
+ static void cleanUp();
+
/**
* Alignments for text drawing.
*/
@@ -518,14 +520,14 @@ class Graphics notfinal
SDL_Window *restrict mWindow;
#ifdef USE_SDL2
- SDL_Renderer *restrict mRenderer;
+ static SDL_Renderer *restrict mRenderer;
#endif // USE_SDL2
#ifdef USE_OPENGL
#ifdef USE_SDL2
- SDL_GLContext mGLContext;
+ static SDL_GLContext mGLContext;
#else // USE_SDL2
- void *restrict mGLContext;
+ static void *restrict mGLContext;
#endif // USE_SDL2
#endif // USE_OPENGL