diff options
author | Zack Rusin <[email protected]> | 2010-06-12 10:40:39 -0400 |
---|---|---|
committer | Zack Rusin <[email protected]> | 2010-06-12 10:45:42 -0400 |
commit | 1551b4da8c7ee3c13e07c7aa79cf148ca444d0f5 (patch) | |
tree | f55d0babf9d555ae689d901ab097ed6666cdec6e | |
parent | 60cfed6c70dac9e12e763a727986427045395cbc (diff) |
softpipe: small cleanup
-rw-r--r-- | src/gallium/drivers/softpipe/sp_state_so.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/gallium/drivers/softpipe/sp_state_so.c b/src/gallium/drivers/softpipe/sp_state_so.c index 27acd3dfc12..cfe23f9e846 100644 --- a/src/gallium/drivers/softpipe/sp_state_so.c +++ b/src/gallium/drivers/softpipe/sp_state_so.c @@ -89,6 +89,8 @@ softpipe_set_stream_output_buffers(struct pipe_context *pipe, void *map_buffers[PIPE_MAX_SO_BUFFERS]; assert(num_buffers <= PIPE_MAX_SO_BUFFERS); + if (num_buffers > PIPE_MAX_SO_BUFFERS) + num_buffers = PIPE_MAX_SO_BUFFERS; softpipe->dirty |= SP_NEW_SO_BUFFERS; @@ -99,7 +101,7 @@ softpipe_set_stream_output_buffers(struct pipe_context *pipe, if (!res) { /* the whole call is invalid, bail out */ softpipe->so_target.num_buffers = 0; - draw_set_mapped_so_buffers(softpipe->draw, map_buffers, 0); + draw_set_mapped_so_buffers(softpipe->draw, 0, 0); return; } |