swrast: Silence uninitialized variable warnings in ss_tritmp.h.

This commit is contained in:
Vinson Lee 2009-12-12 22:00:19 -08:00
parent 89d85e8170
commit 0aef54ba62

View file

@ -41,9 +41,9 @@ static void TAG(triangle)(GLcontext *ctx, GLuint e0, GLuint e1, GLuint e2 )
GLenum mode = GL_FILL;
GLuint facing = 0;
GLchan saved_color[3][4];
GLfloat saved_col0[3][4];
GLfloat saved_spec[3][4];
GLfloat saved_index[3];
GLfloat saved_col0[3][4] = { { 0 } };
GLfloat saved_spec[3][4] = { { 0 } };
GLfloat saved_index[3] = { 0 };
v[0] = &verts[e0];
v[1] = &verts[e1];