diff options
Diffstat (limited to 'include/vcl')
-rw-r--r-- | include/vcl/OpenGLContext.hxx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/vcl/OpenGLContext.hxx b/include/vcl/OpenGLContext.hxx index 4067febdf92d..390c3df45c27 100644 --- a/include/vcl/OpenGLContext.hxx +++ b/include/vcl/OpenGLContext.hxx @@ -65,6 +65,7 @@ struct GLWindow unsigned int Width; unsigned int Height; const GLubyte* GLExtensions; + bool bMultiSampleSupported; bool HasGLExtension( const char* name ) { return gluCheckExtension( (const GLubyte*) name, GLExtensions ); } @@ -86,7 +87,8 @@ struct GLWindow bpp(0), Width(0), Height(0), - GLExtensions(NULL) + GLExtensions(NULL), + bMultiSampleSupported(false) { } }; |