mirror of
https://github.com/godotengine/godot.git
synced 2025-10-19 16:03:29 +00:00
Set both texture format overrides to false by default
This commit is contained in:
parent
593d5ca29f
commit
1e6f30e6bd
2 changed files with 7 additions and 2 deletions
|
@ -2870,7 +2870,10 @@ TypedArray<StringName> RenderingServer::_global_shader_parameter_get_list() cons
|
|||
}
|
||||
|
||||
void RenderingServer::init() {
|
||||
GLOBAL_DEF_RST("rendering/textures/vram_compression/import_s3tc_bptc", true);
|
||||
// These are overrides, even if they are false Godot will still
|
||||
// import the texture formats that the host platform needs.
|
||||
// See `const bool can_s3tc_bptc` in the resource importer.
|
||||
GLOBAL_DEF_RST("rendering/textures/vram_compression/import_s3tc_bptc", false);
|
||||
GLOBAL_DEF_RST("rendering/textures/vram_compression/import_etc2_astc", false);
|
||||
|
||||
GLOBAL_DEF("rendering/textures/lossless_compression/force_png", false);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue