Lines Matching refs:props

50 	} props;  member
232 if (property == nv_plane->props.colorkey) in nv_set_property()
234 else if (property == nv_plane->props.contrast) in nv_set_property()
236 else if (property == nv_plane->props.brightness) in nv_set_property()
238 else if (property == nv_plane->props.hue) in nv_set_property()
240 else if (property == nv_plane->props.saturation) in nv_set_property()
242 else if (property == nv_plane->props.iturbt_709) in nv_set_property()
287 plane->props.colorkey = drm_property_create_range( in nv10_overlay_init()
289 plane->props.contrast = drm_property_create_range( in nv10_overlay_init()
291 plane->props.brightness = drm_property_create_range( in nv10_overlay_init()
293 plane->props.hue = drm_property_create_range( in nv10_overlay_init()
295 plane->props.saturation = drm_property_create_range( in nv10_overlay_init()
297 plane->props.iturbt_709 = drm_property_create_range( in nv10_overlay_init()
299 if (!plane->props.colorkey || in nv10_overlay_init()
300 !plane->props.contrast || in nv10_overlay_init()
301 !plane->props.brightness || in nv10_overlay_init()
302 !plane->props.hue || in nv10_overlay_init()
303 !plane->props.saturation || in nv10_overlay_init()
304 !plane->props.iturbt_709) in nv10_overlay_init()
309 plane->props.colorkey, plane->colorkey); in nv10_overlay_init()
313 plane->props.contrast, plane->contrast); in nv10_overlay_init()
317 plane->props.brightness, plane->brightness); in nv10_overlay_init()
321 plane->props.hue, plane->hue); in nv10_overlay_init()
325 plane->props.saturation, plane->saturation); in nv10_overlay_init()
329 plane->props.iturbt_709, plane->iturbt_709); in nv10_overlay_init()
469 plane->props.colorkey = drm_property_create_range( in nv04_overlay_init()
471 plane->props.brightness = drm_property_create_range( in nv04_overlay_init()
473 if (!plane->props.colorkey || in nv04_overlay_init()
474 !plane->props.brightness) in nv04_overlay_init()
479 plane->props.colorkey, plane->colorkey); in nv04_overlay_init()
483 plane->props.brightness, plane->brightness); in nv04_overlay_init()