summaryrefslogtreecommitdiff
path: root/src/mesa/drivers/dri/r300
diff options
context:
space:
mode:
authorVinson Lee <vlee@vmware.com>2010-02-14 00:56:57 -0800
committerVinson Lee <vlee@vmware.com>2010-02-14 00:56:57 -0800
commit3a299071d41d2e45adba4aebab53ab1391176585 (patch)
tree3936ed48d8abce9090ae2334c7e94ed77fbd0809 /src/mesa/drivers/dri/r300
parent4f131356cc5d2df4316c2146d3d9447d1b4dcd48 (diff)
r300: Silence uninitialized variable warning.
Diffstat (limited to 'src/mesa/drivers/dri/r300')
-rw-r--r--src/mesa/drivers/dri/r300/r300_draw.c2
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 4ae0d6fe48..3efa0e3a16 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;