linux-zen-desktop/drivers/gpu/drm/i915/display/intel_crtc_state_dump.h

19 lines
480 B
C
Raw Normal View History

2023-08-30 17:31:07 +02:00
/* SPDX-License-Identifier: MIT */
/*
* Copyright © 2022 Intel Corporation
*/
#ifndef __INTEL_CRTC_STATE_DUMP_H__
#define __INTEL_CRTC_STATE_DUMP_H__
struct intel_crtc_state;
struct intel_atomic_state;
2023-10-24 12:59:35 +02:00
enum intel_output_format;
2023-08-30 17:31:07 +02:00
void intel_crtc_state_dump(const struct intel_crtc_state *crtc_state,
struct intel_atomic_state *state,
const char *context);
2023-10-24 12:59:35 +02:00
const char *intel_output_format_name(enum intel_output_format format);
2023-08-30 17:31:07 +02:00
#endif /* __INTEL_CRTC_STATE_H__ */