summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/r300/r300_cs.h
diff options
context:
space:
mode:
authorCorbin Simpson <MostAwesomeDude@gmail.com>2009-01-28 02:57:08 -0800
committerCorbin Simpson <MostAwesomeDude@gmail.com>2009-02-01 23:30:31 -0800
commit84ec4d6bedf33bf03ff7a778632eef7b209944cb (patch)
tree9b4b4d4e50d5fed12b2c7135270ea941af07cf5b /src/gallium/drivers/r300/r300_cs.h
parent80dc1801409f9913cc37b8fc8e68c692bc8a22ca (diff)
Ack, forgot to update the index again.
Diffstat (limited to 'src/gallium/drivers/r300/r300_cs.h')
-rw-r--r--src/gallium/drivers/r300/r300_cs.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gallium/drivers/r300/r300_cs.h b/src/gallium/drivers/r300/r300_cs.h
index 42ec9fb094..5686e5a6e9 100644
--- a/src/gallium/drivers/r300/r300_cs.h
+++ b/src/gallium/drivers/r300/r300_cs.h
@@ -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 { \