Module: Mesa Branch: master Commit: 7005feabcd199e498a7c557ebdb2e47194f70d2c URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=7005feabcd199e498a7c557ebdb2e47194f70d2c
Author: Marek Olšák <[email protected]> Date: Sat Jun 12 23:01:57 2010 +0200 r300g: inline CHECK_CS --- src/gallium/drivers/r300/r300_cs.h | 5 +---- 1 files changed, 1 insertions(+), 4 deletions(-) diff --git a/src/gallium/drivers/r300/r300_cs.h b/src/gallium/drivers/r300/r300_cs.h index 9c8c273..866b9a1 100644 --- a/src/gallium/drivers/r300/r300_cs.h +++ b/src/gallium/drivers/r300/r300_cs.h @@ -48,11 +48,8 @@ struct r300_winsys_screen *cs_winsys = cs_context_copy->rws; \ int cs_count = 0; (void) cs_count; -#define CHECK_CS(size) \ - assert(r300_check_cs(cs_context_copy, (size))) - #define BEGIN_CS(size) do { \ - CHECK_CS(size); \ + assert(r300_check_cs(cs_context_copy, (size))); \ if (VERY_VERBOSE_CS) { \ DBG(cs_context_copy, DBG_CS, "r300: BEGIN_CS, count %d, in %s (%s:%d)\n", \ size, __FUNCTION__, __FILE__, __LINE__); \ _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
