diff options
author | Marek Olšák <[email protected]> | 2010-06-12 23:22:48 +0200 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2010-06-13 17:43:38 +0200 |
commit | 8f13e2bda1337c1093d3fa99338eed2c93755d7e (patch) | |
tree | d4436be5d55c5db41f213277e3fe8189941cbc71 /src/gallium/drivers/r300/r300_screen.h | |
parent | 7005feabcd199e498a7c557ebdb2e47194f70d2c (diff) |
r300g: drop DBG_CS
I'd like the CS macros to be as lightweight as possible for performance
reasons.
Diffstat (limited to 'src/gallium/drivers/r300/r300_screen.h')
-rw-r--r-- | src/gallium/drivers/r300/r300_screen.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/r300/r300_screen.h b/src/gallium/drivers/r300/r300_screen.h index 29492024fe3..16888eadc70 100644 --- a/src/gallium/drivers/r300/r300_screen.h +++ b/src/gallium/drivers/r300/r300_screen.h @@ -65,7 +65,7 @@ static INLINE struct r300_screen* r300_screen(struct pipe_screen* screen) { /* Logging. */ #define DBG_FP (1 << 1) #define DBG_VP (1 << 2) -#define DBG_CS (1 << 3) +/* The bit (1 << 3) is unused. */ #define DBG_DRAW (1 << 4) #define DBG_TEX (1 << 5) #define DBG_TEXALLOC (1 << 6) |