diff --git a/app/project.godot b/app/project.godot index bea2347..2c7dd3c 100644 --- a/app/project.godot +++ b/app/project.godot @@ -75,4 +75,5 @@ open_debug={ [rendering] textures/canvas_textures/default_texture_filter=2 +textures/vram_compression/import_etc2_astc=true textures/default_filters/anisotropic_filtering_level=1 diff --git a/app/shaders/render_result.gdshader b/app/shaders/render_result.gdshader index 8e3313d..59fcf71 100644 --- a/app/shaders/render_result.gdshader +++ b/app/shaders/render_result.gdshader @@ -11,7 +11,7 @@ void fragment() { } else { COLOR = zero; } - + if (ext_texture_is_bgra) { COLOR = COLOR.bgra; // Swizzle BGRA to RGBA }