diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2014-08-26 19:09:04 +0200 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2014-09-02 01:08:49 +0200 |
commit | 5a7ab9f1f4beec6b4fe7978b3f794b51046b2e13 (patch) | |
tree | 2e20b189692971ac2f07c327be98501cb51abd9d /vcl/source/opengl | |
parent | 3758286117e1ecb589ba66e1f5c47aae4f06a39f (diff) |
add invalid framebuffer operation to OpenGL error messages
Change-Id: I359ec166e9bf0585842fb436a1edd20720b89a9b
Diffstat (limited to 'vcl/source/opengl')
-rw-r--r-- | vcl/source/opengl/OpenGLHelper.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/vcl/source/opengl/OpenGLHelper.cxx b/vcl/source/opengl/OpenGLHelper.cxx index 3311c082f714..e1fbb4eb0822 100644 --- a/vcl/source/opengl/OpenGLHelper.cxx +++ b/vcl/source/opengl/OpenGLHelper.cxx @@ -229,6 +229,7 @@ const char* OpenGLHelper::GLErrorString(GLenum errorCode) {GL_STACK_OVERFLOW, "stack overflow"}, {GL_STACK_UNDERFLOW, "stack underflow"}, {GL_OUT_OF_MEMORY, "out of memory"}, + {GL_INVALID_FRAMEBUFFER_OPERATION, "invalid framebuffer operation"}, {0, NULL } }; |