diff options
author | Alex Deucher <alex@t41p.hsd1.va.comcast.net> | 2007-05-23 21:18:40 -0400 |
---|---|---|
committer | Alex Deucher <alex@t41p.hsd1.va.comcast.net> | 2007-05-23 21:18:40 -0400 |
commit | 679236defd28bea8874004377436347950ff7bec (patch) | |
tree | 8cf1e9e3aca92a7bbe2029366c306ca717a60714 /src/radeon_video.c | |
parent | e38cad5633c974467f6417051eda8d487ac3686e (diff) |
RADEON: add output properties (not functional yet)
Diffstat (limited to 'src/radeon_video.c')
-rw-r--r-- | src/radeon_video.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/radeon_video.c b/src/radeon_video.c index 6d085ccd..5510d7b4 100644 --- a/src/radeon_video.c +++ b/src/radeon_video.c @@ -99,7 +99,7 @@ static void RADEON_TDA9885_SetEncoding(RADEONPortPrivPtr pPriv); static void RADEON_FI1236_SetEncoding(RADEONPortPrivPtr pPriv); -#define MAKE_ATOM(a) MakeAtom(a, sizeof(a) - 1, TRUE) + #define ClipValue(v,min,max) ((v) < (min) ? (min) : (v) > (max) ? (max) : (v)) static Atom xvBrightness, xvColorKey, xvSaturation, xvDoubleBuffer; |