Loading...
Note: File does not exist in v5.14.15.
1/* SPDX-License-Identifier: MIT */
2/* Copyright © 2024 Intel Corporation */
3
4#ifndef __INTEL_DISPLAY_SNAPSHOT_H__
5#define __INTEL_DISPLAY_SNAPSHOT_H__
6
7struct drm_printer;
8struct intel_display;
9struct intel_display_snapshot;
10
11struct intel_display_snapshot *intel_display_snapshot_capture(struct intel_display *display);
12void intel_display_snapshot_print(const struct intel_display_snapshot *snapshot,
13 struct drm_printer *p);
14void intel_display_snapshot_free(struct intel_display_snapshot *snapshot);
15
16#endif /* __INTEL_DISPLAY_SNAPSHOT_H__ */