mirror of
https://github.com/godotengine/godot.git
synced 2025-10-27 19:54:27 +00:00
Update basis universal to version 1.16.3.
Enable basis universal uastc internal storage instead of etc1s for better quality.
This commit is contained in:
parent
d250f12243
commit
3529141b4b
44 changed files with 8806 additions and 13189 deletions
|
|
@ -55,7 +55,9 @@ namespace basisu
|
|||
abort();
|
||||
}
|
||||
|
||||
#ifdef _MSC_VER
|
||||
#if BASISU_VECTOR_DETERMINISTIC
|
||||
actual_size = desired_size;
|
||||
#elif defined(_MSC_VER)
|
||||
actual_size = _msize(new_p);
|
||||
#elif HAS_MALLOC_USABLE_SIZE
|
||||
actual_size = malloc_usable_size(new_p);
|
||||
|
|
@ -82,7 +84,9 @@ namespace basisu
|
|||
abort();
|
||||
}
|
||||
|
||||
#ifdef _MSC_VER
|
||||
#if BASISU_VECTOR_DETERMINISTIC
|
||||
actual_size = desired_size;
|
||||
#elif defined(_MSC_VER)
|
||||
actual_size = _msize(new_p);
|
||||
#elif HAS_MALLOC_USABLE_SIZE
|
||||
actual_size = malloc_usable_size(new_p);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue