diff options
author | Corbin Simpson <[email protected]> | 2009-03-20 00:48:53 -0700 |
---|---|---|
committer | Corbin Simpson <[email protected]> | 2009-03-20 14:53:21 -0700 |
commit | edfaa686091a4f6238b8f315a475d90ff2c2f5f5 (patch) | |
tree | 7a7861cf2fd636d630077ee629f77bfb470a484c /src/gallium/drivers/r300/r300_cs.h | |
parent | 8066edb2a254d15ed92c2d350a7799adf3cca0d7 (diff) |
r300-gallium: Put r300_cs_inlines to bed.
Guess it was a mistake in the first place. Oops.
Diffstat (limited to 'src/gallium/drivers/r300/r300_cs.h')
-rw-r--r-- | src/gallium/drivers/r300/r300_cs.h | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/src/gallium/drivers/r300/r300_cs.h b/src/gallium/drivers/r300/r300_cs.h index 443dfc0233d..2b9a441147d 100644 --- a/src/gallium/drivers/r300/r300_cs.h +++ b/src/gallium/drivers/r300/r300_cs.h @@ -115,6 +115,21 @@ cs_winsys->flush_cs(cs); \ } while (0) -#include "r300_cs_inlines.h" +#define RADEON_ONE_REG_WR (1 << 15) + +#define OUT_CS_ONE_REG(register, count) do { \ + if (VERY_VERBOSE_REGISTERS) \ + debug_printf("r300: writing data sequence of %d to 0x%04X\n", \ + count, register); \ + assert(register); \ + OUT_CS(CP_PACKET0(register, ((count) - 1)) | RADEON_ONE_REG_WR); \ +} while (0) + +#define CP_PACKET3(op, count) \ + (RADEON_CP_PACKET3 | (op) | ((count) << 16)) + +#define R300_CS_PKT3(op, count) do { \ + OUT_CS(CP_PACKET3(op, count)); \ +} while (0) #endif /* R300_CS_H */ |