Lines Matching refs:props

49 	} props;  member
251 if (property == nv_plane->props.colorkey) in nv_set_property()
253 else if (property == nv_plane->props.contrast) in nv_set_property()
255 else if (property == nv_plane->props.brightness) in nv_set_property()
257 else if (property == nv_plane->props.hue) in nv_set_property()
259 else if (property == nv_plane->props.saturation) in nv_set_property()
307 plane->props.colorkey = drm_property_create_range( in nv10_overlay_init()
309 plane->props.contrast = drm_property_create_range( in nv10_overlay_init()
311 plane->props.brightness = drm_property_create_range( in nv10_overlay_init()
313 plane->props.hue = drm_property_create_range( in nv10_overlay_init()
315 plane->props.saturation = drm_property_create_range( in nv10_overlay_init()
317 if (!plane->props.colorkey || in nv10_overlay_init()
318 !plane->props.contrast || in nv10_overlay_init()
319 !plane->props.brightness || in nv10_overlay_init()
320 !plane->props.hue || in nv10_overlay_init()
321 !plane->props.saturation) in nv10_overlay_init()
326 plane->props.colorkey, plane->colorkey); in nv10_overlay_init()
330 plane->props.contrast, plane->contrast); in nv10_overlay_init()
334 plane->props.brightness, plane->brightness); in nv10_overlay_init()
338 plane->props.hue, plane->hue); in nv10_overlay_init()
342 plane->props.saturation, plane->saturation); in nv10_overlay_init()
486 plane->props.colorkey = drm_property_create_range( in nv04_overlay_init()
488 plane->props.brightness = drm_property_create_range( in nv04_overlay_init()
490 if (!plane->props.colorkey || in nv04_overlay_init()
491 !plane->props.brightness) in nv04_overlay_init()
496 plane->props.colorkey, plane->colorkey); in nv04_overlay_init()
500 plane->props.brightness, plane->brightness); in nv04_overlay_init()