1/* SPDX-License-Identifier: GPL-2.0-only OR MIT */
2/* Copyright (c) 2023 Imagination Technologies Ltd. */
3
4#ifndef PVR_STREAM_DEFS_H
5#define PVR_STREAM_DEFS_H
6
7#include "pvr_stream.h"
8
9extern const struct pvr_stream_cmd_defs pvr_cmd_geom_stream;
10extern const struct pvr_stream_cmd_defs pvr_cmd_frag_stream;
11extern const struct pvr_stream_cmd_defs pvr_cmd_compute_stream;
12extern const struct pvr_stream_cmd_defs pvr_cmd_transfer_stream;
13extern const struct pvr_stream_cmd_defs pvr_static_render_context_state_stream;
14extern const struct pvr_stream_cmd_defs pvr_static_compute_context_state_stream;
15
16#endif /* PVR_STREAM_DEFS_H */
17