diff options
Diffstat (limited to 'backends/graphics/opengl/opengl-sys.h')
-rw-r--r-- | backends/graphics/opengl/opengl-sys.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/backends/graphics/opengl/opengl-sys.h b/backends/graphics/opengl/opengl-sys.h index 550dbb44c5..250357f92a 100644 --- a/backends/graphics/opengl/opengl-sys.h +++ b/backends/graphics/opengl/opengl-sys.h @@ -76,9 +76,6 @@ enum ContextType { * Description structure of the OpenGL (ES) context. */ struct Context { - /** Whether the context is properly initalized or not. */ - bool ready; - /** The type of the active context. */ ContextType type; @@ -87,7 +84,7 @@ struct Context { * * This marks all extensions as unavailable. */ - void reset(); + void reset(bool full = false); /** Whether GL_ARB_texture_non_power_of_two is available or not. */ bool NPOTSupported; |