diff options
author | Vinson Lee <[email protected]> | 2009-12-12 15:08:01 -0800 |
---|---|---|
committer | Vinson Lee <[email protected]> | 2009-12-12 15:08:01 -0800 |
commit | 1e444c9960b18bcee5216a49db997b1c5ec14eca (patch) | |
tree | 38bf34238f5417075e972ab42bec217382e14399 /src/mesa/swrast | |
parent | c1d361bd0b3570811ca4e49d09d3282aaa5cbe01 (diff) |
swrast: Initialize tex_coords in handle_sample_op.
Diffstat (limited to 'src/mesa/swrast')
-rw-r--r-- | src/mesa/swrast/s_atifragshader.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/swrast/s_atifragshader.c b/src/mesa/swrast/s_atifragshader.c index 5fefae6c42b..e88ff191239 100644 --- a/src/mesa/swrast/s_atifragshader.c +++ b/src/mesa/swrast/s_atifragshader.c @@ -279,7 +279,7 @@ handle_sample_op(GLcontext * ctx, struct atifs_machine *machine, /* sample from unit idx using texinst->src as coords */ GLuint swizzle = texinst->swizzle; GLuint coord_source = texinst->src; - GLfloat tex_coords[4]; + GLfloat tex_coords[4] = { 0 }; if (coord_source >= GL_TEXTURE0_ARB && coord_source <= GL_TEXTURE7_ARB) { coord_source -= GL_TEXTURE0_ARB; |