summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/nouveau/nv50/nv50_surface.c
diff options
context:
space:
mode:
authorYonggang Luo <luoyonggang@gmail.com>2022-03-31 04:21:45 +0800
committerMarge Bot <emma+marge@anholt.net>2022-04-01 01:52:43 +0000
commit523675e99544b114d059eab54dd9c8c4e1401a7d (patch)
tree806175086ed868e4eb99bd93de41856a7ec2d93f /src/gallium/drivers/nouveau/nv50/nv50_surface.c
parent240cd8088c6771e07c5348e93ec2e112e35da81c (diff)
util: Rename pipe_debug_message to util_debug_message
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/nouveau/nv50/nv50_surface.c')
-rw-r--r--src/gallium/drivers/nouveau/nv50/nv50_surface.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/nouveau/nv50/nv50_surface.c b/src/gallium/drivers/nouveau/nv50/nv50_surface.c
index df91449b2ae..f6c8642220a 100644
--- a/src/gallium/drivers/nouveau/nv50/nv50_surface.c
+++ b/src/gallium/drivers/nouveau/nv50/nv50_surface.c
@@ -1706,7 +1706,7 @@ nv50_blit(struct pipe_context *pipe, const struct pipe_blit_info *info)
if (info->src.box.width == 0 || info->src.box.height == 0 ||
info->dst.box.width == 0 || info->dst.box.height == 0) {
- pipe_debug_message(&nv50->base.debug, ERROR,
+ util_debug_message(&nv50->base.debug, ERROR,
"Blit with zero-size src or dst box");
return;
}