diff options
author | Corbin Simpson <[email protected]> | 2009-03-20 00:43:29 -0700 |
---|---|---|
committer | Corbin Simpson <[email protected]> | 2009-03-20 14:53:21 -0700 |
commit | 8066edb2a254d15ed92c2d350a7799adf3cca0d7 (patch) | |
tree | eb7199af6ff2eb8a5dadadb0dd8614ad29af8441 /src/gallium/drivers/r300/r300_cs.h | |
parent | f1429580848b471c487e55a9a81b904452f50df5 (diff) |
r300-gallium: Simplify/neaten up packet3.
Deck chairs on the Hindenburg. :3
Diffstat (limited to 'src/gallium/drivers/r300/r300_cs.h')
-rw-r--r-- | src/gallium/drivers/r300/r300_cs.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/gallium/drivers/r300/r300_cs.h b/src/gallium/drivers/r300/r300_cs.h index d8038ff1e19..443dfc0233d 100644 --- a/src/gallium/drivers/r300/r300_cs.h +++ b/src/gallium/drivers/r300/r300_cs.h @@ -47,9 +47,6 @@ #define CP_PACKET0(register, count) \ (RADEON_CP_PACKET0 | ((count) << 16) | ((register) >> 2)) -#define CP_PACKET3(op, count) \ - (RADEON_CP_PACKET3 | (op) | ((count) << 16)) - #define CS_LOCALS(context) \ struct r300_winsys* cs_winsys = context->winsys; \ struct radeon_cs* cs = cs_winsys->cs; \ |