radv/bvh: remove redundant definition of DIV_ROUND_UP

Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/36118>
This commit is contained in:
Samuel Pitoiset
2025-07-14 18:45:11 +02:00
parent cf548b4500
commit 6111e40a55
-4
View File
@@ -109,8 +109,4 @@ radv_encode_blas_pointer_flags(uint32_t flags, uint32_t geometry_type)
return ptr_flags;
}
/** Compute ceiling of integer quotient of A divided by B.
From macros.h */
#define DIV_ROUND_UP(A, B) (((A) + (B)-1) / (B))
#endif /* BUILD_HELPERS_H */