diff options
author | Rhys Weatherley <rhys.weatherley@nokia.com> | 2009-04-20 23:38:03 (GMT) |
---|---|---|
committer | Rhys Weatherley <rhys.weatherley@nokia.com> | 2009-05-01 00:17:36 (GMT) |
commit | ab0ee278362ec8bd3acbed0e98b3392aad68bef5 (patch) | |
tree | 4cca83012d163a6d99a2e04a90756bf4921f7837 /src/opengl/qglshaderprogram.cpp | |
parent | 17ee6906eb726ea9b03c6c7e67448cf3d924f0f8 (diff) | |
download | Qt-ab0ee278362ec8bd3acbed0e98b3392aad68bef5.zip Qt-ab0ee278362ec8bd3acbed0e98b3392aad68bef5.tar.gz Qt-ab0ee278362ec8bd3acbed0e98b3392aad68bef5.tar.bz2 |
Make QGLShaderProgram::disable() static.
Reviewed-by: trustme
Diffstat (limited to 'src/opengl/qglshaderprogram.cpp')
-rw-r--r-- | src/opengl/qglshaderprogram.cpp | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/opengl/qglshaderprogram.cpp b/src/opengl/qglshaderprogram.cpp index 9180c3e..55d1bda 100644 --- a/src/opengl/qglshaderprogram.cpp +++ b/src/opengl/qglshaderprogram.cpp @@ -1211,8 +1211,11 @@ bool QGLShaderProgram::enable() return true; } +#undef ctx +#define ctx QGLContext::currentContext() + /*! - Disables this shader program in the currently active QGLContext. + Disables the active shader program in the current QGLContext. This is equivalent to calling \c{glUseProgram(0)}. \sa enable() @@ -1227,6 +1230,9 @@ void QGLShaderProgram::disable() #endif } +#undef ctx +#define ctx d->context + /*! Returns the OpenGL identifier associated with this shader program. |