diff options
author | Pierre Ossman <pierre@ossman.eu> | 2008-12-03 20:33:36 +0100 |
---|---|---|
committer | Pierre Ossman <pierre@ossman.eu> | 2008-12-03 20:33:36 +0100 |
commit | 79bbdd984c925e37f5b3db2605339f1a21377fcf (patch) | |
tree | 7639e4bc2c508ce5139b9019128287a7cb893949 /src/radeon_video.h | |
parent | bbdf821c179242266fd86edf9e688a6be9cf985f (diff) |
Change the XV_BICUBIC attribute to a tristate, where the third state
automatically turns the filter on and off as appropriate.
Diffstat (limited to 'src/radeon_video.h')
-rw-r--r-- | src/radeon_video.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/radeon_video.h b/src/radeon_video.h index 11b80291..448377be 100644 --- a/src/radeon_video.h +++ b/src/radeon_video.h @@ -95,6 +95,10 @@ typedef struct { int bicubic_offset; Bool bicubic_enabled; uint32_t bicubic_src_offset; + int bicubic_state; +#define BICUBIC_OFF 0 +#define BICUBIC_ON 1 +#define BICUBIC_AUTO 2 Atom device_id, location_id, instance_id; |