mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-06 05:08:08 +02:00
radv: Don't take absolute value of unsigned type.
Fixes clang warnings. Reviewed-by: Samuel Pitoiset <samuel.pitoiset@gmail.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5228>
This commit is contained in:
parent
7d2fe60f1c
commit
c2a778ef0f
1 changed files with 2 additions and 2 deletions
|
|
@ -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++) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue