mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-25 01:48:18 +02:00
Signed-off-by: Simon Perretta <simon.perretta@imgtec.com> Acked-by: Frank Binns <frank.binns@imgtec.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/32258>
18 lines
348 B
C
18 lines
348 B
C
/*
|
|
* Copyright © 2024 Imagination Technologies Ltd.
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*/
|
|
|
|
#ifndef PVR_NIR_H
|
|
#define PVR_NIR_H
|
|
|
|
#include "nir/nir.h"
|
|
#include "pco/pco.h"
|
|
#include "pvr_private.h"
|
|
|
|
void pvr_lower_nir(pco_ctx *ctx,
|
|
struct pvr_pipeline_layout *layout,
|
|
nir_shader *nir);
|
|
|
|
#endif /* PVR_NIR_H */
|