Ack, forgot to update the index again.
authorCorbin Simpson <MostAwesomeDude@gmail.com>
Wed, 28 Jan 2009 10:57:08 +0000 (02:57 -0800)
committerCorbin Simpson <MostAwesomeDude@gmail.com>
Mon, 2 Feb 2009 07:30:31 +0000 (23:30 -0800)
src/gallium/drivers/r300/r300_cs.h

index 42ec9fb094c8a6d948d58cc4d934f69f24d0a3e3..5686e5a6e96d42cb3e0d413dec8607c55b6c9742 100644 (file)
@@ -68,10 +68,10 @@ static uint32_t pack_float_32(float f)
 
 #define BEGIN_CS(size) do { \
     CHECK_CS(size); \
-    debug_printf("r300: BEGIN_CS in %s (%s:%d)\n", __FUNCTION__, __FILE__, \
-        __LINE__); \
+    debug_printf("r300: BEGIN_CS, count %d, in %s (%s:%d)\n", \
+        size, __FUNCTION__, __FILE__, __LINE__); \
     cs_winsys->begin_cs(cs, (size), __FILE__, __FUNCTION__, __LINE__); \
-    int cs_count = size; \
+    cs_count = size; \
 } while (0)
 
 #define OUT_CS(value) do { \