diff options
author | Vinson Lee <[email protected]> | 2010-02-14 00:56:57 -0800 |
---|---|---|
committer | Vinson Lee <[email protected]> | 2010-02-14 00:56:57 -0800 |
commit | 3a299071d41d2e45adba4aebab53ab1391176585 (patch) | |
tree | 3936ed48d8abce9090ae2334c7e94ed77fbd0809 /src | |
parent | 4f131356cc5d2df4316c2146d3d9447d1b4dcd48 (diff) |
r300: Silence uninitialized variable warning.
Diffstat (limited to 'src')
-rw-r--r-- | src/mesa/drivers/dri/r300/r300_draw.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/r300/r300_draw.c b/src/mesa/drivers/dri/r300/r300_draw.c index 4ae0d6fe48f..3efa0e3a163 100644 --- a/src/mesa/drivers/dri/r300/r300_draw.c +++ b/src/mesa/drivers/dri/r300/r300_draw.c @@ -332,7 +332,7 @@ static void r300TranslateAttrib(GLcontext *ctx, GLuint attr, int count, const st { r300ContextPtr r300 = R300_CONTEXT(ctx); struct r300_vertex_buffer *vbuf = &r300->vbuf; - struct vertex_attribute r300_attr; + struct vertex_attribute r300_attr = { 0 }; GLenum type; GLuint stride; |