Mesa (master): Revert "llvmpipe: Move tile coordinate assertion into a more useful place."

Jose Fonseca jrfonseca at kemper.freedesktop.org
Thu Feb 11 12:31:55 UTC 2010


Module: Mesa
Branch: master
Commit: be29a60f9ec273931ec2cc244619a387de3075a0
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=be29a60f9ec273931ec2cc244619a387de3075a0

Author: José Fonseca <jfonseca at vmware.com>
Date:   Thu Feb 11 12:14:01 2010 +0000

Revert "llvmpipe: Move tile coordinate assertion into a more useful place."

This reverts commit 8c0391726a89414356c705fcc2d5a38d12d0fe2b.

Too pendantic.

---

 src/gallium/drivers/llvmpipe/lp_scene.h |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/gallium/drivers/llvmpipe/lp_scene.h b/src/gallium/drivers/llvmpipe/lp_scene.h
index 23a54f0..fb478cc 100644
--- a/src/gallium/drivers/llvmpipe/lp_scene.h
+++ b/src/gallium/drivers/llvmpipe/lp_scene.h
@@ -227,9 +227,6 @@ lp_scene_putback_data( struct lp_scene *scene, unsigned size)
 static INLINE struct cmd_bin *
 lp_scene_get_bin(struct lp_scene *scene, unsigned x, unsigned y)
 {
-   assert(x < scene->tiles_x);
-   assert(y < scene->tiles_y);
-
    return &scene->tile[x][y];
 }
 
@@ -250,6 +247,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 );
    }




More information about the mesa-commit mailing list