diff options
author | Corbin Simpson <[email protected]> | 2009-03-05 11:59:22 -0800 |
---|---|---|
committer | Corbin Simpson <[email protected]> | 2009-03-05 12:41:54 -0800 |
commit | 0b723b8b89cd65901431199f86911f003465946e (patch) | |
tree | 2ef9f8010cc3f3ddd7a309e1604e23aac2a9c516 /src/gallium/drivers/r300/r300_surface.h | |
parent | ac2acda036c208d963fefac27d7300e017c74527 (diff) |
r300-gallium: Move RS block setup to CSO.
Diffstat (limited to 'src/gallium/drivers/r300/r300_surface.h')
-rw-r--r-- | src/gallium/drivers/r300/r300_surface.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/gallium/drivers/r300/r300_surface.h b/src/gallium/drivers/r300/r300_surface.h index 807aad39e49..616d56dd04b 100644 --- a/src/gallium/drivers/r300/r300_surface.h +++ b/src/gallium/drivers/r300/r300_surface.h @@ -69,4 +69,24 @@ const struct r300_rs_state rs_clear_state = { .line_stipple_value = 0x0, }; +const struct r300_rs_block r300_rs_block_clear_state = { + .ip[0] = R500_RS_SEL_S(R300_RS_SEL_K0) | + R500_RS_SEL_T(R300_RS_SEL_K0) | + R500_RS_SEL_R(R300_RS_SEL_K0) | + R500_RS_SEL_Q(R300_RS_SEL_K1), + .inst[0] = R300_RS_INST_COL_CN_WRITE, + .count = R300_IT_COUNT(0) | R300_IC_COUNT(1) | R300_HIRES_EN, + .inst_count = 0, +}; + +const struct r300_rs_block r500_rs_block_clear_state = { + .ip[0] = R500_RS_SEL_S(R500_RS_IP_PTR_K0) | + R500_RS_SEL_T(R500_RS_IP_PTR_K0) | + R500_RS_SEL_R(R500_RS_IP_PTR_K0) | + R500_RS_SEL_Q(R500_RS_IP_PTR_K1), + .inst[0] = R500_RS_INST_COL_CN_WRITE, + .count = R300_IT_COUNT(0) | R300_IC_COUNT(1) | R300_HIRES_EN, + .inst_count = 0, +}; + #endif /* R300_SURFACE_H */ |