diff options
author | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2024-07-04 21:03:15 +0300 |
---|---|---|
committer | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2024-07-04 21:03:32 +0300 |
commit | ab4213f043b0de41a66e8868c0ee3d294bf71e44 (patch) | |
tree | 740e1582facb16c9dc8e97df5960b9045a3ab821 /platform/macos | |
parent | 4d984b63697d840f2c823608d2c46740fb44651a (diff) | |
download | redot-engine-ab4213f043b0de41a66e8868c0ee3d294bf71e44.tar.gz |
[MoltenVK] Fix downscaled hiDPI window pixelation.
Diffstat (limited to 'platform/macos')
-rw-r--r-- | platform/macos/godot_main_macos.mm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/platform/macos/godot_main_macos.mm b/platform/macos/godot_main_macos.mm index 942c351ac0..eebaed0eaf 100644 --- a/platform/macos/godot_main_macos.mm +++ b/platform/macos/godot_main_macos.mm @@ -41,8 +41,8 @@ int main(int argc, char **argv) { #if defined(VULKAN_ENABLED) - // MoltenVK - enable full component swizzling support. - setenv("MVK_CONFIG_FULL_IMAGE_VIEW_SWIZZLE", "1", 1); + setenv("MVK_CONFIG_FULL_IMAGE_VIEW_SWIZZLE", "1", 1); // MoltenVK - enable full component swizzling support. + setenv("MVK_CONFIG_SWAPCHAIN_MIN_MAG_FILTER_USE_NEAREST", "0", 1); // MoltenVK - use linear surface scaling. TODO: remove when full DPI scaling is implemented. #endif #if defined(SANITIZERS_ENABLED) |