summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/lima/ir/pp/nir.c
diff options
context:
space:
mode:
authorYonggang Luo <luoyonggang@gmail.com>2022-03-31 04:22:26 +0800
committerMarge Bot <emma+marge@anholt.net>2022-04-01 01:52:43 +0000
commit2ca6ef22f7837519656265b1221af67bb57398e2 (patch)
tree6f00bebd7cb99e1707345dca30652c6cac07a845 /src/gallium/drivers/lima/ir/pp/nir.c
parent523675e99544b114d059eab54dd9c8c4e1401a7d (diff)
downloadmesa-2ca6ef22f7837519656265b1221af67bb57398e2.tar.gz
util: Rename pipe_debug_callback to util_debug_callback
Signed-off-by: Yonggang Luo <luoyonggang@gmail.com> Reviewed-by: Marek Olšák <marek.olsak@amd.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/15657>
Diffstat (limited to 'src/gallium/drivers/lima/ir/pp/nir.c')
-rw-r--r--src/gallium/drivers/lima/ir/pp/nir.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/drivers/lima/ir/pp/nir.c b/src/gallium/drivers/lima/ir/pp/nir.c
index b72336190e6..9812dd6b98b 100644
--- a/src/gallium/drivers/lima/ir/pp/nir.c
+++ b/src/gallium/drivers/lima/ir/pp/nir.c
@@ -860,7 +860,7 @@ static void ppir_add_ordering_deps(ppir_compiler *comp)
}
static void ppir_print_shader_db(struct nir_shader *nir, ppir_compiler *comp,
- struct pipe_debug_callback *debug)
+ struct util_debug_callback *debug)
{
const struct shader_info *info = &nir->info;
char *shaderdb;
@@ -906,7 +906,7 @@ static void ppir_add_write_after_read_deps(ppir_compiler *comp)
bool ppir_compile_nir(struct lima_fs_compiled_shader *prog, struct nir_shader *nir,
struct ra_regs *ra,
- struct pipe_debug_callback *debug)
+ struct util_debug_callback *debug)
{
nir_function_impl *func = nir_shader_get_entrypoint(nir);
ppir_compiler *comp = ppir_compiler_create(prog, func->reg_alloc, func->ssa_alloc);