Lines Matching refs:props

50 	} props;  member
233 if (property == nv_plane->props.colorkey) in nv_set_property()
235 else if (property == nv_plane->props.contrast) in nv_set_property()
237 else if (property == nv_plane->props.brightness) in nv_set_property()
239 else if (property == nv_plane->props.hue) in nv_set_property()
241 else if (property == nv_plane->props.saturation) in nv_set_property()
243 else if (property == nv_plane->props.iturbt_709) in nv_set_property()
288 plane->props.colorkey = drm_property_create_range( in nv10_overlay_init()
290 plane->props.contrast = drm_property_create_range( in nv10_overlay_init()
292 plane->props.brightness = drm_property_create_range( in nv10_overlay_init()
294 plane->props.hue = drm_property_create_range( in nv10_overlay_init()
296 plane->props.saturation = drm_property_create_range( in nv10_overlay_init()
298 plane->props.iturbt_709 = drm_property_create_range( in nv10_overlay_init()
300 if (!plane->props.colorkey || in nv10_overlay_init()
301 !plane->props.contrast || in nv10_overlay_init()
302 !plane->props.brightness || in nv10_overlay_init()
303 !plane->props.hue || in nv10_overlay_init()
304 !plane->props.saturation || in nv10_overlay_init()
305 !plane->props.iturbt_709) in nv10_overlay_init()
310 plane->props.colorkey, plane->colorkey); in nv10_overlay_init()
314 plane->props.contrast, plane->contrast); in nv10_overlay_init()
318 plane->props.brightness, plane->brightness); in nv10_overlay_init()
322 plane->props.hue, plane->hue); in nv10_overlay_init()
326 plane->props.saturation, plane->saturation); in nv10_overlay_init()
330 plane->props.iturbt_709, plane->iturbt_709); in nv10_overlay_init()
470 plane->props.colorkey = drm_property_create_range( in nv04_overlay_init()
472 plane->props.brightness = drm_property_create_range( in nv04_overlay_init()
474 if (!plane->props.colorkey || in nv04_overlay_init()
475 !plane->props.brightness) in nv04_overlay_init()
480 plane->props.colorkey, plane->colorkey); in nv04_overlay_init()
484 plane->props.brightness, plane->brightness); in nv04_overlay_init()