mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00
17 lines
550 B
C
17 lines
550 B
C
![]() |
/* SPDX-License-Identifier: MIT */
|
||
|
/* Copyright © 2024 Intel Corporation */
|
||
|
|
||
|
#ifndef __INTEL_DISPLAY_SNAPSHOT_H__
|
||
|
#define __INTEL_DISPLAY_SNAPSHOT_H__
|
||
|
|
||
|
struct drm_printer;
|
||
|
struct intel_display;
|
||
|
struct intel_display_snapshot;
|
||
|
|
||
|
struct intel_display_snapshot *intel_display_snapshot_capture(struct intel_display *display);
|
||
|
void intel_display_snapshot_print(const struct intel_display_snapshot *snapshot,
|
||
|
struct drm_printer *p);
|
||
|
void intel_display_snapshot_free(struct intel_display_snapshot *snapshot);
|
||
|
|
||
|
#endif /* __INTEL_DISPLAY_SNAPSHOT_H__ */
|