diff options
author | Corbin Simpson <[email protected]> | 2009-01-22 21:47:05 -0800 |
---|---|---|
committer | Corbin Simpson <[email protected]> | 2009-02-01 23:30:26 -0800 |
commit | 2f37387786f1d0d6beded5afc29d36f744f1c948 (patch) | |
tree | ec501632040563f0009d82926902cbc8c18236e9 /src/gallium/drivers/r300/r300_context.h | |
parent | 0648bc9f65f1c6700b442e57ac0e82404fb60c2d (diff) |
r300: Add texture sampler state.
Easy compared to the actual texture handling code.
Diffstat (limited to 'src/gallium/drivers/r300/r300_context.h')
-rw-r--r-- | src/gallium/drivers/r300/r300_context.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/gallium/drivers/r300/r300_context.h b/src/gallium/drivers/r300/r300_context.h index 3877c9855d6..3cb5df4e20e 100644 --- a/src/gallium/drivers/r300/r300_context.h +++ b/src/gallium/drivers/r300/r300_context.h @@ -66,6 +66,9 @@ struct r300_rs_state { }; struct r300_sampler_state { + uint32_t filter0; /* R300_TX_FILTER0: 0x4400 */ + uint32_t filter1; /* R300_TX_FILTER1: 0x4440 */ + uint32_t border_color; /* R300_TX_BORDER_COLOR: 0x45c0 */ }; struct r300_scissor_state { |