diff options
author | Hugo Locurcio <hugo.locurcio@hugo.pro> | 2024-07-12 01:52:55 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2024-07-19 16:04:30 +0200 |
commit | 0445ccf428da3486e0ce9a2a45edc7cc52340034 (patch) | |
tree | d92f2a4c5f95f758230e07174ea2bf5e59d25a40 /misc | |
parent | 293c0f76463a4e1c2c2e86d8fbfc3e04f491b347 (diff) | |
download | redot-engine-0445ccf428da3486e0ce9a2a45edc7cc52340034.tar.gz |
Fix Image CowData crash when baking large lightmaps
This switches to 64-bit integers in select locations of the Image
class, so that image resolutions of 16384×16384 (used by
lightmap texture arrays) can be used properly. Values that are larger
should also work.
VRAM compression is also supported, although most VRAM-compressed
formats are limited to individual slices of 16384×16384. WebP
is limited to 16383×16383 due to format limitations.
Diffstat (limited to 'misc')
-rw-r--r-- | misc/extension_api_validation/4.2-stable.expected | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/misc/extension_api_validation/4.2-stable.expected b/misc/extension_api_validation/4.2-stable.expected index 50695cb0b1..ce8f24c7a9 100644 --- a/misc/extension_api_validation/4.2-stable.expected +++ b/misc/extension_api_validation/4.2-stable.expected @@ -372,3 +372,11 @@ GH-93982 Validate extension JSON: Error: Field 'classes/Sprite3D/properties/frame_coords': type changed value in new API, from "Vector2" to "Vector2i". The type was wrong to begin with and has been corrected. Vector2 and Vector2i are convertible, so it should be compatible. + + +GH-94243 +-------- +Validate extension JSON: Error: Field 'classes/Image/methods/get_mipmap_offset/return_value': meta changed value in new API, from "int32" to "int64". + +Type changed to int64_t to support baking large lightmaps. +No compatibility method needed, both GDExtension and C# generate it as int64_t anyway. |