-1

Is the MetalKit framework available for 32 bit apps on macOS? When I try to open it from a 32 bit app I receive:

dlopen(/System/Library/Frameworks/MetalKit.framework/MetalKit, 1): no suitable image found. Did find: /System/Library/Frameworks/MetalKit.framework/MetalKit: mach-o, but wrong architecture /System/Library/Frameworks/MetalKit.framework/MetalKit: mach-o, but wrong architecture /System/Library/Frameworks/MetalKit.framework/Versions/A/MetalKit: mach-o, but wrong architecture /System/Library/Frameworks/MetalKit.framework/Versions/A/MetalKit: mach-o, but wrong architecture

Andrew Madsen
  • 21,309
  • 5
  • 56
  • 97
zeus
  • 12,173
  • 9
  • 63
  • 184

1 Answers1

1

No, Metal is a 64-bit-only framework, so it follows that MetalKit is, too.

Ken Thomases
  • 88,520
  • 7
  • 116
  • 154
  • are you sure? because seam that I can load the metal framework and I can create a MTLDevice on 32 bit. But I can't load the MetalKit framework – zeus Nov 26 '19 at 07:36