HomeSort by: relevance | last modified time | path
    Searched refs:ClipValue (Results 1 - 6 of 6) sorted by relevancy

  /xsrc/external/mit/xf86-video-ati-kms/dist/src/
radeon_video.h 13 #define ClipValue(v,min,max) ((v) < (min) ? (min) : (v) > (max) ? (max) : (v))
radeon_textured_video.c 659 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/xf86-video-ati/dist/src/
radeon_textured_video.c 730 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);
radeon_video.h 20 #define ClipValue(v,min,max) ((v) < (min) ? (min) : (v) > (max) ? (max) : (v))
radeon_video.c 1126 OvROff = ClipValue(OvROff, -2048.0, 2047.5);
1127 OvGOff = ClipValue(OvGOff, -2048.0, 2047.5);
1128 OvBOff = ClipValue(OvBOff, -2048.0, 2047.5);
1778 pPriv->autopaint_colorkey = ClipValue (value, 0, 1);
1813 pPriv->brightness = ClipValue (value, -1000, 1000);
1818 pPriv->saturation = ClipValue (value, -1000, 1000);
1823 pPriv->contrast = ClipValue (value, -1000, 1000);
1828 pPriv->hue = ClipValue (value, -1000, 1000);
1833 pPriv->red_intensity = ClipValue (value, -1000, 1000);
1838 pPriv->green_intensity = ClipValue (value, -1000, 1000)
    [all...]
  /xsrc/external/mit/xorg-server/dist/glamor/
glamor_xv.c 263 #define ClipValue(v,min,max) ((v) < (min) ? (min) : (v) > (max) ? (max) : (v))
290 port_priv->brightness = ClipValue(value, -1000, 1000);
292 port_priv->hue = ClipValue(value, -1000, 1000);
294 port_priv->contrast = ClipValue(value, -1000, 1000);
296 port_priv->saturation = ClipValue(value, -1000, 1000);
298 port_priv->gamma = ClipValue(value, 100, 10000);
300 port_priv->transform_index = ClipValue(value, 0, 1);

Completed in 10 milliseconds