diff options
author | Vinson Lee <[email protected]> | 2012-05-13 23:40:57 -0700 |
---|---|---|
committer | Vinson Lee <[email protected]> | 2012-05-14 08:44:16 -0700 |
commit | 599140119ebdef8dcae9e465ee6177dabb44b8b0 (patch) | |
tree | d73f70567cac396525ad8c03057ce11da2749c98 /src/gallium/auxiliary/vl | |
parent | 24678700edaf5bb9da9be93a1367f1a24cfaa471 (diff) |
vl: Initialize pipe_vertex_buffer.user_buffer fields.
Fix uninitialized scalar variable defects reported by Coverity.
Signed-off-by: Vinson Lee <[email protected]>
Reviewed-by: José Fonseca <[email protected]>
Diffstat (limited to 'src/gallium/auxiliary/vl')
-rw-r--r-- | src/gallium/auxiliary/vl/vl_vertex_buffers.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/gallium/auxiliary/vl/vl_vertex_buffers.c b/src/gallium/auxiliary/vl/vl_vertex_buffers.c index 1e326a13620..a6e7af37bf4 100644 --- a/src/gallium/auxiliary/vl/vl_vertex_buffers.c +++ b/src/gallium/auxiliary/vl/vl_vertex_buffers.c @@ -56,6 +56,7 @@ vl_vb_upload_quads(struct pipe_context *pipe) PIPE_USAGE_STATIC, sizeof(struct vertex2f) * 4 ); + quad.user_buffer = NULL; if(!quad.buffer) return quad; @@ -100,6 +101,7 @@ vl_vb_upload_pos(struct pipe_context *pipe, unsigned width, unsigned height) PIPE_USAGE_STATIC, sizeof(struct vertex2s) * width * height ); + pos.user_buffer = NULL; if(!pos.buffer) return pos; @@ -268,6 +270,7 @@ vl_vb_get_ycbcr(struct vl_vertex_buffer *buffer, int component) buf.stride = sizeof(struct vl_ycbcr_block); buf.buffer_offset = 0; buf.buffer = buffer->ycbcr[component].resource; + buf.user_buffer = NULL; return buf; } @@ -282,6 +285,7 @@ vl_vb_get_mv(struct vl_vertex_buffer *buffer, int motionvector) buf.stride = sizeof(struct vl_motionvector); buf.buffer_offset = 0; buf.buffer = buffer->mv[motionvector].resource; + buf.user_buffer = NULL; return buf; } |