mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-22 08:48:07 +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>
24 lines
526 B
C
24 lines
526 B
C
/*
|
|
* Copyright © 2024 Imagination Technologies Ltd.
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*/
|
|
|
|
#include "pvr_nir.h"
|
|
#include "util/macros.h"
|
|
|
|
#include <stdio.h>
|
|
|
|
/**
|
|
* \brief Performs Vulkan-specific lowering on a NIR shader.
|
|
*
|
|
* \param[in] ctx PCO compiler context.
|
|
* \param[in] layout Graphics/compute pipeline layout.
|
|
* \param[in,out] nir NIR shader.
|
|
*/
|
|
void pvr_lower_nir(pco_ctx *ctx,
|
|
struct pvr_pipeline_layout *layout,
|
|
nir_shader *nir)
|
|
{
|
|
puts("finishme: pvr_lower_nir");
|
|
}
|