diff options
Diffstat (limited to 'backends/graphics/opengl/context.cpp')
-rw-r--r-- | backends/graphics/opengl/context.cpp | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/backends/graphics/opengl/context.cpp b/backends/graphics/opengl/context.cpp index 618be07a57..a58a5e060a 100644 --- a/backends/graphics/opengl/context.cpp +++ b/backends/graphics/opengl/context.cpp @@ -27,14 +27,15 @@ namespace OpenGL { -void Context::reset(bool full) { - // GLES supports least features, thus we initialize the context type - // to this on full reset. - const ContextType savedType = full ? kContextGLES : type; - - memset(this, 0, sizeof(Context)); +void Context::reset() { + NPOTSupported = false; +#if !USE_FORCED_GLES && !USE_FORCED_GLES2 + shadersSupported = false; +#endif - type = savedType; +#define GL_FUNC_DEF(ret, name, param) name = nullptr; +#include "backends/graphics/opengl/opengl-func.h" +#undef GL_FUNC_DEF } Context g_context; |