Searched refs:ClipValue (Results 1 - 6 of 6) sorted by relevance

/xsrc/external/mit/xf86-video-ati-kms/dist/src/
H A Dradeon_video.h13 #define ClipValue(v,min,max) ((v) < (min) ? (min) : (v) > (max) ? (max) : (v)) macro
H A Dradeon_textured_video.c659 pPriv->bicubic_state = ClipValue (value, 0, 2);
661 pPriv->vsync = ClipValue (value, 0, 1);
663 pPriv->brightness = ClipValue (value, -1000, 1000);
665 pPriv->contrast = ClipValue (value, -1000, 1000);
667 pPriv->saturation = ClipValue (value, -1000, 1000);
669 pPriv->hue = ClipValue (value, -1000, 1000);
671 pPriv->gamma = ClipValue (value, 100, 10000);
673 pPriv->transform_index = ClipValue (value, 0, 1);
/xsrc/external/mit/xorg-server/dist/glamor/
H A Dglamor_xv.c192 #define ClipValue(v,min,max) ((v) < (min) ? (min) : (v) > (max) ? (max) : (v)) macro
219 port_priv->brightness = ClipValue(value, -1000, 1000);
221 port_priv->hue = ClipValue(value, -1000, 1000);
223 port_priv->contrast = ClipValue(value, -1000, 1000);
225 port_priv->saturation = ClipValue(value, -1000, 1000);
227 port_priv->gamma = ClipValue(value, 100, 10000);
229 port_priv->transform_index = ClipValue(value, 0, 1);
/xsrc/external/mit/xf86-video-ati/dist/src/
H A Dradeon_textured_video.c730 pPriv->bicubic_state = ClipValue (value, 0, 2);
732 pPriv->vsync = ClipValue (value, 0, 1);
734 pPriv->brightness = ClipValue (value, -1000, 1000);
736 pPriv->contrast = ClipValue (value, -1000, 1000);
738 pPriv->saturation = ClipValue (value, -1000, 1000);
740 pPriv->hue = ClipValue (value, -1000, 1000);
742 pPriv->gamma = ClipValue (value, 100, 10000);
744 pPriv->transform_index = ClipValue (value, 0, 1);
H A Dradeon_video.h20 #define ClipValue(v,min,max) ((v) < (min) ? (min) : (v) > (max) ? (max) : (v)) macro
H A Dradeon_video.c1124 OvROff = ClipValue(OvROff, -2048.0, 2047.5);
1125 OvGOff = ClipValue(OvGOff, -2048.0, 2047.5);
1126 OvBOff = ClipValue(OvBOff, -2048.0, 2047.5);
1776 pPriv->autopaint_colorkey = ClipValue (value, 0, 1);
1811 pPriv->brightness = ClipValue (value, -1000, 1000);
1816 pPriv->saturation = ClipValue (value, -1000, 1000);
1821 pPriv->contrast = ClipValue (value, -1000, 1000);
1826 pPriv->hue = ClipValue (value, -1000, 1000);
1831 pPriv->red_intensity = ClipValue (value, -1000, 1000);
1836 pPriv->green_intensity = ClipValue (valu
[all...]

Completed in 10 milliseconds