Lines Matching defs:props
49 } props;
251 if (property == nv_plane->props.colorkey)
253 else if (property == nv_plane->props.contrast)
255 else if (property == nv_plane->props.brightness)
257 else if (property == nv_plane->props.hue)
259 else if (property == nv_plane->props.saturation)
306 plane->props.colorkey = drm_property_create_range(
308 plane->props.contrast = drm_property_create_range(
310 plane->props.brightness = drm_property_create_range(
312 plane->props.hue = drm_property_create_range(
314 plane->props.saturation = drm_property_create_range(
316 if (!plane->props.colorkey ||
317 !plane->props.contrast ||
318 !plane->props.brightness ||
319 !plane->props.hue ||
320 !plane->props.saturation)
325 plane->props.colorkey, plane->colorkey);
329 plane->props.contrast, plane->contrast);
333 plane->props.brightness, plane->brightness);
337 plane->props.hue, plane->hue);
341 plane->props.saturation, plane->saturation);
485 plane->props.colorkey = drm_property_create_range(
487 plane->props.brightness = drm_property_create_range(
489 if (!plane->props.colorkey ||
490 !plane->props.brightness)
495 plane->props.colorkey, plane->colorkey);
499 plane->props.brightness, plane->brightness);