diff options
author | Brian Paul <[email protected]> | 2011-02-22 12:44:42 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2011-02-22 12:47:18 -0700 |
commit | cbe47a2459c3b3a78a98038aed1990ec8627bb49 (patch) | |
tree | 0f5547dbdafdded1b03b2ab97a2c9b7cd928d1d7 /src/gallium/drivers/r300 | |
parent | 7898d2ae16d335e27da599cd3cab04528248f959 (diff) |
r300g: fix missing initializers warning
Diffstat (limited to 'src/gallium/drivers/r300')
-rw-r--r-- | src/gallium/drivers/r300/r300_context.c | 6 |
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 da6b0bb8aa7..9f85bd4ce5f 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 = |