diff options
author | Miley Hollenberg <mileyhollenberg@gmail.com> | 2024-09-05 11:01:20 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-05 11:01:20 +0200 |
commit | 5e7fdef343f1c3448ac8556fc19779607bc605f5 (patch) | |
tree | 5cf7486a0e001df83c3ca5a96d994a701a7a3378 /drivers | |
parent | b6223c0df0300ba2db17b5742c349f13c33f8884 (diff) | |
download | redot-engine-5e7fdef343f1c3448ac8556fc19779607bc605f5.tar.gz |
Fixed compiler error
Would cause a compiler error when compiled with `scons p=ios target=template_debug ios_simulator=yes arch=arm64`
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/metal/pixel_formats.mm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/metal/pixel_formats.mm b/drivers/metal/pixel_formats.mm index ac737b3f0a..36edbab99a 100644 --- a/drivers/metal/pixel_formats.mm +++ b/drivers/metal/pixel_formats.mm @@ -1200,7 +1200,7 @@ void PixelFormats::modifyMTLFormatCapabilities(id<MTLDevice> p_device) { // Disable for iOS simulator last. #if TARGET_OS_SIMULATOR - if (![mtlDevice supportsFamily:MTLGPUFamilyApple5]) { + if (![p_device supportsFamily:MTLGPUFamilyApple5]) { disableAllMTLPixFmtCaps(R8Unorm_sRGB); disableAllMTLPixFmtCaps(RG8Unorm_sRGB); disableAllMTLPixFmtCaps(B5G6R5Unorm); |