Mesa (master): r300g: inline CHECK_CS

Marek Olšák mareko at kemper.freedesktop.org
Sun Jun 13 15:44:22 UTC 2010


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

Author: Marek Olšák <maraeo at gmail.com>
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__); \




More information about the mesa-commit mailing list