linux/drivers/gpu/drm/i915/display/intel_color.h
<<
>>
Prefs
   1/* SPDX-License-Identifier: MIT */
   2/*
   3 * Copyright © 2019 Intel Corporation
   4 */
   5
   6#ifndef __INTEL_COLOR_H__
   7#define __INTEL_COLOR_H__
   8
   9struct intel_crtc_state;
  10struct intel_crtc;
  11
  12void intel_color_init(struct intel_crtc *crtc);
  13int intel_color_check(struct intel_crtc_state *crtc_state);
  14void intel_color_commit(const struct intel_crtc_state *crtc_state);
  15void intel_color_load_luts(const struct intel_crtc_state *crtc_state);
  16void intel_color_get_config(struct intel_crtc_state *crtc_state);
  17
  18#endif /* __INTEL_COLOR_H__ */
  19