diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2023-11-02 04:53:47 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2023-11-02 04:53:47 +0000 |
commit | b44518130b33cadb5c1d619e9e936ae0e0dbf7cb (patch) | |
tree | 6069eb03c39fbc79808a7d94f857118cce75cbe3 /lib/mesa/src/gallium/drivers/svga/svga_pipe_blit.c | |
parent | 32aeb3c41fedbbd7b11aacfec48e8f699d16bff0 (diff) |
Merge Mesa 23.1.9
Diffstat (limited to 'lib/mesa/src/gallium/drivers/svga/svga_pipe_blit.c')
-rw-r--r-- | lib/mesa/src/gallium/drivers/svga/svga_pipe_blit.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/mesa/src/gallium/drivers/svga/svga_pipe_blit.c b/lib/mesa/src/gallium/drivers/svga/svga_pipe_blit.c index d5be5697c..45a5de24e 100644 --- a/lib/mesa/src/gallium/drivers/svga/svga_pipe_blit.c +++ b/lib/mesa/src/gallium/drivers/svga/svga_pipe_blit.c @@ -857,7 +857,7 @@ svga_blit(struct pipe_context *pipe, if (!is_texture_valid_to_copy(svga, blit->src.resource)) { debug_printf("%s: texture is not defined to copy\n", - __FUNCTION__); + __func__); goto done; } @@ -903,7 +903,7 @@ svga_resource_copy_region(struct pipe_context *pipe, if (!is_texture_valid_to_copy(svga, src_tex)) { debug_printf("%s: texture is not defined to copy\n", - __FUNCTION__); + __func__); goto done; } |