commit | 4a76e5a904374c781fe2ccb7e7613acf4a8bbc4c | [log] [tgz] |
---|---|---|
author | Bill Hollings <bill.hollings@brenwill.com> | Sat May 01 15:35:19 2021 -0400 |
committer | Bill Hollings <bill.hollings@brenwill.com> | Sat May 01 15:35:19 2021 -0400 |
tree | 820eee25fa1a268abe91abc19191e76a1aa3d0e3 | |
parent | 0bfd1274280d2125d3617199507684723c6d01b8 [diff] |
Further fixes to Xcode 12.5 support. Fix macro logic in mvkSupportsBCTextureCompression() for iOS & tvOS platforms.
diff --git a/MoltenVK/MoltenVK/GPUObjects/MVKDevice.mm b/MoltenVK/MoltenVK/GPUObjects/MVKDevice.mm index ac2ddff..167395d 100644 --- a/MoltenVK/MoltenVK/GPUObjects/MVKDevice.mm +++ b/MoltenVK/MoltenVK/GPUObjects/MVKDevice.mm
@@ -4175,5 +4175,7 @@ #endif return true; #endif +#if MVK_IOS_OR_TVOS return false; +#endif }