diff options
author | Dave Airlie <[email protected]> | 2008-05-22 17:09:30 +1000 |
---|---|---|
committer | Dave Airlie <[email protected]> | 2008-05-22 17:09:58 +1000 |
commit | a01816da59cd7a18fca281ef94a822f08cec5c6e (patch) | |
tree | 21852da8fd7b8dd10f0be38f7f2cbfe0cca30b46 /src/mesa/drivers/dri/r300/r300_context.h | |
parent | 4f9dcdc35b277aa1ded60059a654da22d2075067 (diff) |
r500: bump state atom size up for fp and fp constants
Diffstat (limited to 'src/mesa/drivers/dri/r300/r300_context.h')
-rw-r--r-- | src/mesa/drivers/dri/r300/r300_context.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/mesa/drivers/dri/r300/r300_context.h b/src/mesa/drivers/dri/r300/r300_context.h index 06b81e6e636..eba93e4bfb2 100644 --- a/src/mesa/drivers/dri/r300/r300_context.h +++ b/src/mesa/drivers/dri/r300/r300_context.h @@ -372,10 +372,14 @@ struct r300_state_atom { #define R300_FPI_CMD_0 0 #define R300_FPI_INSTR_0 1 #define R300_FPI_CMDSIZE 65 +/* R500 has space for 512 instructions - 6 dwords per instruction */ +#define R500_FPI_CMDSIZE (512*6+1) #define R300_FPP_CMD_0 0 #define R300_FPP_PARAM_0 1 #define R300_FPP_CMDSIZE (32*4+1) +/* R500 has spcae for 256 constants - 4 dwords per constant */ +#define R500_FPP_CMDSIZE (256*4+1) #define R300_FOGS_CMD_0 0 #define R300_FOGS_STATE 1 |