Mesa (master): radv: Don't take absolute value of unsigned type.

GitLab Mirror gitlab-mirror at kemper.freedesktop.org
Tue Jun 2 21:44:39 UTC 2020


Module: Mesa
Branch: master
Commit: c2a778ef0f1720f9fb28afd40a791488648218d0
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=c2a778ef0f1720f9fb28afd40a791488648218d0

Author: Oschowa <oschowa at web.de>
Date:   Fri May 22 12:37:27 2020 +0200

radv: Don't take absolute value of unsigned type.

Fixes clang warnings.

Reviewed-by: Samuel Pitoiset <samuel.pitoiset at gmail.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5228>

---

 src/amd/vulkan/radv_meta_blit.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/amd/vulkan/radv_meta_blit.c b/src/amd/vulkan/radv_meta_blit.c
index b7a9205085e..cf43b2fc41b 100644
--- a/src/amd/vulkan/radv_meta_blit.c
+++ b/src/amd/vulkan/radv_meta_blit.c
@@ -620,8 +620,8 @@ void radv_CmdBlitImage(
 		VkRect2D dest_box;
 		dest_box.offset.x = MIN2(dst_x0, dst_x1);
 		dest_box.offset.y = MIN2(dst_y0, dst_y1);
-		dest_box.extent.width = abs(dst_x1 - dst_x0);
-		dest_box.extent.height = abs(dst_y1 - dst_y0);
+		dest_box.extent.width = dst_x1 - dst_x0;
+		dest_box.extent.height = dst_y1 - dst_y0;
 
 		const unsigned num_layers = dst_end - dst_start;
 		for (unsigned i = 0; i < num_layers; i++) {



More information about the mesa-commit mailing list