basis_universal: Update to 1.60

This commit is contained in:
Jakub Marcowski 2025-03-11 10:51:10 +01:00
parent 78c9f8ddd9
commit 246b062bd6
No known key found for this signature in database
GPG key ID: 10D9E07CFFBC0E6F
43 changed files with 29563 additions and 6572 deletions

View file

@ -91,6 +91,8 @@ namespace basisu
void gaussian_filter(imagef &dst, const imagef &orig_img, uint32_t odd_filter_width, float sigma_sqr, bool wrapping, uint32_t width_divisor, uint32_t height_divisor)
{
assert(&dst != &orig_img);
assert(odd_filter_width && (odd_filter_width & 1));
odd_filter_width |= 1;