summaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorMiley Hollenberg <mileyhollenberg@gmail.com>2024-09-05 11:01:20 +0200
committerGitHub <noreply@github.com>2024-09-05 11:01:20 +0200
commit5e7fdef343f1c3448ac8556fc19779607bc605f5 (patch)
tree5cf7486a0e001df83c3ca5a96d994a701a7a3378 /drivers
parentb6223c0df0300ba2db17b5742c349f13c33f8884 (diff)
downloadredot-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.mm2
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);