Resolve glUniform3fv() and glUniform4fv().
svn path=/trunk/KDE/kdebase/workspace/; revision=1100844
This commit is contained in:
parent
bfa031170e
commit
17a38a7cdb
2 changed files with 7 additions and 0 deletions
|
@ -96,6 +96,8 @@ glUniform1f_func glUniform1f;
|
|||
glUniform1i_func glUniform1i;
|
||||
glUniform1fv_func glUniform1fv;
|
||||
glUniform2fv_func glUniform2fv;
|
||||
glUniform3fv_func glUniform3fv;
|
||||
glUniform4fv_func glUniform4fv;
|
||||
glValidateProgram_func glValidateProgram;
|
||||
glGetUniformLocation_func glGetUniformLocation;
|
||||
glVertexAttrib1f_func glVertexAttrib1f;
|
||||
|
@ -238,6 +240,8 @@ void glResolveFunctions()
|
|||
GL_RESOLVE_WITH_EXT( glUniform1i, glUniform1iARB );
|
||||
GL_RESOLVE_WITH_EXT( glUniform1fv, glUniform1fvARB );
|
||||
GL_RESOLVE_WITH_EXT( glUniform2fv, glUniform2fvARB );
|
||||
GL_RESOLVE_WITH_EXT( glUniform3fv, glUniform3fvARB );
|
||||
GL_RESOLVE_WITH_EXT( glUniform4fv, glUniform4fvARB );
|
||||
GL_RESOLVE_WITH_EXT( glValidateProgram, glValidateProgramARB );
|
||||
GL_RESOLVE_WITH_EXT( glGetUniformLocation, glGetUniformLocationARB );
|
||||
GL_RESOLVE_WITH_EXT( glVertexAttrib1f, glVertexAttrib1fARB );
|
||||
|
|
|
@ -272,6 +272,7 @@ typedef GLvoid (*glUniform1i_func)(GLint, GLint);
|
|||
typedef GLvoid (*glUniform1fv_func)(GLint, GLsizei, const GLfloat*);
|
||||
typedef GLvoid (*glUniform2fv_func)(GLint, GLsizei, const GLfloat*);
|
||||
typedef GLvoid (*glUniform3fv_func)(GLint, GLsizei, const GLfloat*);
|
||||
typedef GLvoid (*glUniform4fv_func)(GLint, GLsizei, const GLfloat*);
|
||||
typedef GLvoid (*glValidateProgram_func)(GLuint);
|
||||
typedef GLint (*glGetUniformLocation_func)(GLuint, const GLchar*);
|
||||
typedef GLvoid (*glVertexAttrib1f_func)(GLuint, GLfloat);
|
||||
|
@ -298,6 +299,8 @@ extern KWIN_EXPORT glUniform1f_func glUniform1f;
|
|||
extern KWIN_EXPORT glUniform1i_func glUniform1i;
|
||||
extern KWIN_EXPORT glUniform1fv_func glUniform1fv;
|
||||
extern KWIN_EXPORT glUniform2fv_func glUniform2fv;
|
||||
extern KWIN_EXPORT glUniform3fv_func glUniform3fv;
|
||||
extern KWIN_EXPORT glUniform4fv_func glUniform4fv;
|
||||
extern KWIN_EXPORT glValidateProgram_func glValidateProgram;
|
||||
extern KWIN_EXPORT glGetUniformLocation_func glGetUniformLocation;
|
||||
extern KWIN_EXPORT glVertexAttrib1f_func glVertexAttrib1f;
|
||||
|
|
Loading…
Reference in a new issue