diff options
author | Brian <[email protected]> | 2007-02-01 09:24:41 -0700 |
---|---|---|
committer | Brian <[email protected]> | 2007-02-01 09:24:41 -0700 |
commit | 8fa6f7363e79740bafba5fb97e4d28f531fbf6d6 (patch) | |
tree | 1b16c5a305aa5c47de6b653f8e04a8dc0c966242 /src/mesa/shader/arbprogparse.c | |
parent | 3866558c9840f9c4fed6ac0bd2994ccc67f40f7f (diff) |
silence uninitialized var warning
Diffstat (limited to 'src/mesa/shader/arbprogparse.c')
-rw-r--r-- | src/mesa/shader/arbprogparse.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/shader/arbprogparse.c b/src/mesa/shader/arbprogparse.c index 991378f6d49..e240d88aaae 100644 --- a/src/mesa/shader/arbprogparse.c +++ b/src/mesa/shader/arbprogparse.c @@ -1461,7 +1461,7 @@ parse_attrib_binding(GLcontext * ctx, const GLubyte ** inst, break; case FRAGMENT_ATTRIB_TEXCOORD: { - GLuint texcoord; + GLuint texcoord = 0; err = parse_texcoord_num (ctx, inst, Program, &texcoord); *inputReg = FRAG_ATTRIB_TEX0 + texcoord; } @@ -1522,7 +1522,7 @@ parse_attrib_binding(GLcontext * ctx, const GLubyte ** inst, case VERTEX_ATTRIB_TEXCOORD: { - GLuint unit; + GLuint unit = 0; err = parse_texcoord_num (ctx, inst, Program, &unit); *inputReg = VERT_ATTRIB_TEX0 + unit; } |