summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/r300
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2011-02-22 12:44:42 -0700
committerBrian Paul <brianp@vmware.com>2011-02-22 12:47:18 -0700
commitcbe47a2459c3b3a78a98038aed1990ec8627bb49 (patch)
tree0f5547dbdafdded1b03b2ab97a2c9b7cd928d1d7 /src/gallium/drivers/r300
parent7898d2ae16d335e27da599cd3cab04528248f959 (diff)
r300g: fix missing initializers warning
Diffstat (limited to 'src/gallium/drivers/r300')
-rw-r--r--src/gallium/drivers/r300/r300_context.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/gallium/drivers/r300/r300_context.c b/src/gallium/drivers/r300/r300_context.c
index da6b0bb8aa..9f85bd4ce5 100644
--- a/src/gallium/drivers/r300/r300_context.c
+++ b/src/gallium/drivers/r300/r300_context.c
@@ -482,7 +482,8 @@ struct pipe_context* r300_create_context(struct pipe_screen* screen,
}
{
- struct pipe_resource vb = {};
+ struct pipe_resource vb;
+ memset(&vb, 0, sizeof(vb));
vb.target = PIPE_BUFFER;
vb.format = PIPE_FORMAT_R8_UNORM;
vb.bind = PIPE_BIND_VERTEX_BUFFER;
@@ -495,7 +496,8 @@ struct pipe_context* r300_create_context(struct pipe_screen* screen,
}
{
- struct pipe_depth_stencil_alpha_state dsa = {};
+ struct pipe_depth_stencil_alpha_state dsa;
+ memset(&dsa, 0, sizeof(dsa));
dsa.depth.writemask = 1;
r300->dsa_decompress_zmask =