diff options
author | Brian Paul <[email protected]> | 2009-04-14 20:00:28 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2009-04-14 20:00:28 -0600 |
commit | 0115a4f8f1952b166eaad09f317ff8bc465e0f28 (patch) | |
tree | 46306702a6b3258a9cfde025540e87f65cfb2a70 /src/mesa/main/dd.h | |
parent | 62c45ec951829563b92a95cce5b9621e70c971a4 (diff) |
mesa: remove unused matrixType param from ctx->Driver.UniformMatrix() functions
Diffstat (limited to 'src/mesa/main/dd.h')
-rw-r--r-- | src/mesa/main/dd.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/dd.h b/src/mesa/main/dd.h index d994401e55f..32b1d4e9faf 100644 --- a/src/mesa/main/dd.h +++ b/src/mesa/main/dd.h @@ -911,7 +911,7 @@ struct dd_function_table { void (*Uniform)(GLcontext *ctx, GLint location, GLsizei count, const GLvoid *values, GLenum type); void (*UniformMatrix)(GLcontext *ctx, GLint cols, GLint rows, - GLenum matrixType, GLint location, GLsizei count, + GLint location, GLsizei count, GLboolean transpose, const GLfloat *values); void (*UseProgram)(GLcontext *ctx, GLuint program); void (*ValidateProgram)(GLcontext *ctx, GLuint program); |