-
-
Notifications
You must be signed in to change notification settings - Fork 21.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Godot attempting to load BPTC textures on Android #74451
Comments
This seems related to a similar issue in July 2022 (#62909), and in that case a "lazy" fix was applied which just lied about the supported capabilities of the operating system to trick the resource loader into only loading the desired formats. |
A few of us discussed this on Roacketchat and we think we know what the issue is and how to resolve it. The IssueAt export time the exporter is removing the BPTC and S3TC files as it should. But it is not removing the reference to the S3TC and BPTC files from the import metadata. At load time, the engine checks the graphics driver to see if the format is supported, if it is, it will try to load it. Since there is a mismatch between what we export and what the GPU supports it ends up trying to load a non-existent resource. Accordingly, there are two parts to the problem:
In 3.x we solved this problem by forcibly disabling reporting S3TC from the OpenGL driver side (I don't know why we didn't run into issues with BPTC). The solutionFirst we need to change the exporter settings. On PC we have checkboxes for BPTC, S3TC, ETC, and ASTC. They need to be changed to only have 2 checkboxes S3TC/BPTC and ETC2/ASTC. We need to add these checkboxes for Android and remove the hardcoded options for ETC2 and ASTC. Second, we need to figure out why the import metadata maintains reference to BPTC at export time and change it to respect the export checkboxes added above. |
For the record, according to @reduz it sounds like we should instead remove all configuration options for PC, and just stick to:
|
We still have the "lazy" fix code present for S3TC in the gles3 driver, and this could be expanded to cover BPTC: godot/drivers/gles3/storage/config.cpp Lines 80 to 87 in dac2d8f
It looks like we have the equivalent code on the Vulkan side for S3TC and could be expanded to cover BPTC: godot/servers/rendering/renderer_rd/storage_rd/utilities.cpp Lines 272 to 283 in dac2d8f
|
I think I have a solution for this. Will post a PR soon. Reduz was right. The code that exports the .import files was just copying them over as-is thought regard to the file types that were being trimmed at export time. The solution is to edit the exported copy of the .import file to only include the texture types that are being exported. |
Godot version
Godot 4.0 Stable
System information
Windows 11, Vulkan Mobile, NVidia RTX 3070 TI - targeting Quest 2
Issue description
When running the Godot-XR-Tools demo project natively on the Quest, the main scene fails to load because the resource loader tries to load the BPTC version of the texture, even though the ASTC version was bundled into the APK.
Unable to open file: res://.godot/imported/SkyOnlyHDRI023_2K-TONEMAPPED.jpg-bcb5464e5ed42ee2463b71652f907f38.bptc.ctex.
Steps to reproduce
Build the latest godot-xr-tools demo project (https://github.com/GodotVR/godot-xr-tools) targeting the Quest.
The project has both S3TC/BPTC and ETC2/ASTC texture compression formats enabled.
The .import files mention both the S3TC/BPTC and ETC2/ASTC formats; however when exporting for Quest 2 (an Android target) Godot automatically enables the astc and etc2 features and bundles only the ASTC and ETC2 textures into the APK.
At startup the resource importer reads the .import files, sees S3TC/BPTC as the first enabled texture, sees that S3TC/BPTC is supported on the platform, and picks that format - totally ignoring what was actually bundled into the installer.
Minimal reproduction project
Build the latest godot-xr-tools demo project (https://github.com/GodotVR/godot-xr-tools) targeting the Quest.
The text was updated successfully, but these errors were encountered: