#ifndef BOO_COCOACOMMON_HPP #define BOO_COCOACOMMON_HPP #if __APPLE__ #if !__has_feature(objc_arc) #error ARC Required #endif #if BOO_HAS_METAL #include #include #include #include namespace boo { class IWindow; struct MetalContext { id m_dev = nullptr; id m_q = nullptr; struct Window { CAMetalLayer* m_metalLayer = nullptr; std::mutex m_resizeLock; bool m_needsResize; CGSize m_size; }; std::unordered_map m_windows; uint32_t m_sampleCount = 1; uint32_t m_anisotropy = 1; MTLPixelFormat m_pixelFormat = MTLPixelFormatBGRA8Unorm; }; } #else namespace boo { struct MetalContext {}; } #endif #endif // __APPLE__ #endif // BOO_COCOACOMMON_HPP