diff options
author | Alex Deucher <[email protected]> | 2009-07-28 17:59:54 -0400 |
---|---|---|
committer | Alex Deucher <[email protected]> | 2009-07-28 17:59:54 -0400 |
commit | e629c50e2be03144e8aeef3c51624ae8db9957b8 (patch) | |
tree | 73946459a7887aef216bacabcbaa1b42970d3b9f /src/mesa/drivers/dri/radeon | |
parent | 719abd7fc088c5ebc567e9ea20bdd6fc9fe1af3b (diff) |
r600: implement texture border color
Diffstat (limited to 'src/mesa/drivers/dri/radeon')
-rw-r--r-- | src/mesa/drivers/dri/radeon/radeon_common_context.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/mesa/drivers/dri/radeon/radeon_common_context.h b/src/mesa/drivers/dri/radeon/radeon_common_context.h index e4a8da05965..0cdacb1c361 100644 --- a/src/mesa/drivers/dri/radeon/radeon_common_context.h +++ b/src/mesa/drivers/dri/radeon/radeon_common_context.h @@ -239,6 +239,11 @@ struct radeon_tex_obj { GLuint SQ_TEX_SAMPLER1; GLuint SQ_TEX_SAMPLER2; + GLuint TD_PS_SAMPLER0_BORDER_RED; + GLuint TD_PS_SAMPLER0_BORDER_GREEN; + GLuint TD_PS_SAMPLER0_BORDER_BLUE; + GLuint TD_PS_SAMPLER0_BORDER_ALPHA; + GLboolean border_fallback; |