diff options
author | José Fonseca <[email protected]> | 2011-03-12 20:39:17 +0000 |
---|---|---|
committer | José Fonseca <[email protected]> | 2011-03-13 18:56:19 +0000 |
commit | d2332569d2be9ace850b8d6b80abe4c597968773 (patch) | |
tree | e6455751d625ddb745fbd2679019d6a6dfd9a278 /src | |
parent | b79b05e17e197a7cdc523deff8f7ea456a91e8d0 (diff) |
util: Silence gcc unitialized member warning
Diffstat (limited to 'src')
-rw-r--r-- | src/gallium/auxiliary/util/u_vbuf_mgr.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/auxiliary/util/u_vbuf_mgr.c b/src/gallium/auxiliary/util/u_vbuf_mgr.c index 51bb4b85850..521ac07747c 100644 --- a/src/gallium/auxiliary/util/u_vbuf_mgr.c +++ b/src/gallium/auxiliary/util/u_vbuf_mgr.c @@ -170,6 +170,7 @@ static void u_vbuf_translate_begin(struct u_vbuf_mgr_priv *mgr, /* Initialize the translate key, i.e. the recipe how vertices should be * translated. */ + memset(&key, 0, sizeof key); for (i = 0; i < mgr->ve->count; i++) { struct pipe_vertex_buffer *vb = &mgr->b.vertex_buffer[mgr->ve->ve[i].vertex_buffer_index]; |