summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/llvmpipe/lp_scene.h
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2010-01-12 17:11:40 -0700
committerBrian Paul <brianp@vmware.com>2010-01-12 17:11:40 -0700
commitc560b97b17a009f5ea8423523cd3a70fe7b506e9 (patch)
treeb1e5cca00313835aca738aee6716e0dc261c894e /src/gallium/drivers/llvmpipe/lp_scene.h
parent214ffad01598c8780417b9fa9df75e951c8ac049 (diff)
llvmpipe: assert that we're putting data into a valid bin
Diffstat (limited to 'src/gallium/drivers/llvmpipe/lp_scene.h')
-rw-r--r--src/gallium/drivers/llvmpipe/lp_scene.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/gallium/drivers/llvmpipe/lp_scene.h b/src/gallium/drivers/llvmpipe/lp_scene.h
index 7255727785..b59b687002 100644
--- a/src/gallium/drivers/llvmpipe/lp_scene.h
+++ b/src/gallium/drivers/llvmpipe/lp_scene.h
@@ -227,6 +227,9 @@ lp_scene_bin_command( struct lp_scene *scene,
struct cmd_bin *bin = lp_scene_get_bin(scene, x, y);
struct cmd_block_list *list = &bin->commands;
+ assert(x < scene->tiles_x);
+ assert(y < scene->tiles_y);
+
if (list->tail->count == CMD_BLOCK_MAX) {
lp_bin_new_cmd_block( list );
}