diff options
| -rw-r--r-- | src/mesa/shader/arbprogram.c | 1 | 
1 files changed, 1 insertions, 0 deletions
| diff --git a/src/mesa/shader/arbprogram.c b/src/mesa/shader/arbprogram.c index 760dac2399..7c2b747c43 100644 --- a/src/mesa/shader/arbprogram.c +++ b/src/mesa/shader/arbprogram.c @@ -807,6 +807,7 @@ _mesa_GetProgramLocalParameterdvARB(GLenum target, GLuint index,  {     GET_CURRENT_CONTEXT(ctx);     GLfloat floatParams[4]; +   ASSIGN_4V(floatParams, 0.0F, 0.0F, 0.0F, 0.0F);     _mesa_GetProgramLocalParameterfvARB(target, index, floatParams);     if (ctx->ErrorValue == GL_NO_ERROR) {        COPY_4V(params, floatParams); | 
