MeVisLab Resolution Independence API
|
GLSL Program resource. More...
#include <mlGLResources.h>
Public Member Functions | |
GLSLProgram () | |
~GLSLProgram () override | |
void | disable () |
disable program | |
void | detachShader (GLSLShader &shader) |
detach the given shader (this is safe to be called outside of a valid GL context) | |
void | detachShader (GLuint shader) |
detach the given shader (this is safe to be called outside of a valid GL context) | |
GLuint | getHandle () const |
get the program's handle (you need to create() the buffer before you get a handle) | |
bool | isValid () const |
check if the program is valid | |
void | create () |
create the program (requires valid GL context) | |
void | destroy () |
destroy the resource | |
void | contextDestroyed () override |
forget the resource, the context was destroyed | |
Public Member Functions inherited from ml::GLResource | |
GLResource () | |
virtual | ~GLResource () |
Additional Inherited Members | |
Static Public Member Functions inherited from ml::GLResource | |
static GLenum | getGLError () |
check for OpenGL error (returns GL_INVALID_OPERATION if there is no valid OpenGL context) | |
Protected Attributes inherited from ml::GLResource | |
GLResource * | _next |
GLResource * | _previous |
GLSL Program resource.
Definition at line 301 of file mlGLResources.h.
|
inline |
Definition at line 303 of file mlGLResources.h.
|
inlineoverride |
Definition at line 304 of file mlGLResources.h.
|
inlineoverridevirtual |
forget the resource, the context was destroyed
Implements ml::GLResource.
Definition at line 328 of file mlGLResources.h.
void ml::GLSLProgram::create | ( | ) |
create the program (requires valid GL context)
void ml::GLSLProgram::destroy | ( | ) |
destroy the resource
void ml::GLSLProgram::detachShader | ( | GLSLShader & | shader | ) |
detach the given shader (this is safe to be called outside of a valid GL context)
void ml::GLSLProgram::detachShader | ( | GLuint | shader | ) |
detach the given shader (this is safe to be called outside of a valid GL context)
void ml::GLSLProgram::disable | ( | ) |
disable program
|
inline |
get the program's handle (you need to create() the buffer before you get a handle)
Definition at line 316 of file mlGLResources.h.
Referenced by SoGLShaderProgram::getProgramHandle().
|
inline |
check if the program is valid
Definition at line 319 of file mlGLResources.h.