diff options
author | Brian Paul <[email protected]> | 2008-07-08 16:12:01 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2008-07-08 16:12:01 -0600 |
commit | 072c47483674021425922132cf6d977090077f8e (patch) | |
tree | e3925c28127e2e862407239de343e526fa507c52 /src/mesa/main/dd.h | |
parent | 3bdf50bab0951c5435bbf4b938d37cc1fe9a5d7c (diff) |
mesa: implement glGetUniformiv() with new ctx->Driver function
The old implementation could overwrite the caller's param buffer.
Diffstat (limited to 'src/mesa/main/dd.h')
-rw-r--r-- | src/mesa/main/dd.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mesa/main/dd.h b/src/mesa/main/dd.h index a24021c63fd..7fb0a211d7a 100644 --- a/src/mesa/main/dd.h +++ b/src/mesa/main/dd.h @@ -870,6 +870,8 @@ struct dd_function_table { GLsizei *length, GLcharARB *sourceOut); void (*GetUniformfv)(GLcontext *ctx, GLuint program, GLint location, GLfloat *params); + void (*GetUniformiv)(GLcontext *ctx, GLuint program, GLint location, + GLint *params); GLint (*GetUniformLocation)(GLcontext *ctx, GLuint program, const GLcharARB *name); GLboolean (*IsProgram)(GLcontext *ctx, GLuint name); |