#include "../mac/CocoaCommon.hpp" #if BOO_HAS_METAL #include #include "boo/graphicsdev/Metal.hpp" #include "boo/IGraphicsContext.hpp" #include #define MAX_UNIFORM_COUNT 8 #define MAX_TEXTURE_COUNT 8 namespace boo { static LogVisor::LogModule Log("boo::Metal"); struct MetalCommandQueue; ThreadLocalPtr MetalDataFactory::m_deferredData; struct MetalData : IGraphicsData { std::vector> m_SPs; std::vector> m_SBinds; std::vector> m_SBufs; std::vector> m_DBufs; std::vector> m_STexs; std::vector> m_SATexs; std::vector> m_DTexs; std::vector> m_RTexs; std::vector> m_VFmts; }; #define MTL_STATIC MTLResourceCPUCacheModeWriteCombined|MTLResourceStorageModeShared #define MTL_DYNAMIC MTLResourceCPUCacheModeWriteCombined|MTLResourceStorageModeShared class MetalGraphicsBufferS : public IGraphicsBufferS { friend class MetalDataFactory; friend struct MetalCommandQueue; MetalGraphicsBufferS(BufferUse use, MetalContext* ctx, const void* data, size_t stride, size_t count) : m_stride(stride), m_count(count), m_sz(stride * count) { m_buf = [ctx->m_dev.get() newBufferWithBytes:data length:m_sz options:MTL_STATIC]; } public: size_t m_stride; size_t m_count; size_t m_sz; NSPtr> m_buf; ~MetalGraphicsBufferS() = default; }; class MetalGraphicsBufferD : public IGraphicsBufferD { friend class MetalDataFactory; friend struct MetalCommandQueue; MetalCommandQueue* m_q; std::unique_ptr m_cpuBuf; int m_validSlots = 0; MetalGraphicsBufferD(MetalCommandQueue* q, BufferUse use, MetalContext* ctx, size_t stride, size_t count) : m_q(q), m_stride(stride), m_count(count), m_sz(stride * count) { m_cpuBuf.reset(new uint8_t[m_sz]); m_bufs[0] = [ctx->m_dev.get() newBufferWithLength:m_sz options:MTL_DYNAMIC]; m_bufs[1] = [ctx->m_dev.get() newBufferWithLength:m_sz options:MTL_DYNAMIC]; } void update(int b); public: size_t m_stride; size_t m_count; size_t m_sz; NSPtr> m_bufs[2]; MetalGraphicsBufferD() = default; void load(const void* data, size_t sz); void* map(size_t sz); void unmap(); }; class MetalTextureS : public ITextureS { friend class MetalDataFactory; MetalTextureS(MetalContext* ctx, size_t width, size_t height, size_t mips, TextureFormat fmt, const void* data, size_t sz) { MTLPixelFormat pfmt = MTLPixelFormatRGBA8Unorm; NSUInteger ppitch = 4; switch (fmt) { case TextureFormat::I8: pfmt = MTLPixelFormatR8Unorm; ppitch = 1; break; default: break; } NSPtr desc; @autoreleasepool { desc = [[MTLTextureDescriptor texture2DDescriptorWithPixelFormat:pfmt width:width height:height mipmapped:(mips>1)?YES:NO] retain]; } desc.get().usage = MTLTextureUsageShaderRead; desc.get().mipmapLevelCount = mips; m_tex = [ctx->m_dev.get() newTextureWithDescriptor:desc.get()]; const uint8_t* dataIt = reinterpret_cast(data); for (size_t i=0 ; i> m_tex; ~MetalTextureS() = default; }; class MetalTextureSA : public ITextureSA { friend class MetalDataFactory; MetalTextureSA(MetalContext* ctx, size_t width, size_t height, size_t layers, TextureFormat fmt, const void* data, size_t sz) { MTLPixelFormat pfmt = MTLPixelFormatRGBA8Unorm; NSUInteger ppitch = 4; switch (fmt) { case TextureFormat::I8: pfmt = MTLPixelFormatR8Unorm; ppitch = 1; break; default: break; } NSPtr desc; @autoreleasepool { desc = [[MTLTextureDescriptor texture2DDescriptorWithPixelFormat:pfmt width:width height:height mipmapped:NO] retain]; } desc.get().textureType = MTLTextureType2DArray; desc.get().arrayLength = layers; desc.get().usage = MTLTextureUsageShaderRead; m_tex = [ctx->m_dev.get() newTextureWithDescriptor:desc.get()]; const uint8_t* dataIt = reinterpret_cast(data); for (size_t i=0 ; i> m_tex; ~MetalTextureSA() = default; }; class MetalTextureD : public ITextureD { friend class MetalDataFactory; friend struct MetalCommandQueue; MetalCommandQueue* m_q; size_t m_width = 0; size_t m_height = 0; std::unique_ptr m_cpuBuf; size_t m_cpuSz; size_t m_pxPitch; int m_validSlots = 0; MetalTextureD(MetalCommandQueue* q, MetalContext* ctx, size_t width, size_t height, TextureFormat fmt) : m_q(q), m_width(width), m_height(height) { MTLPixelFormat format; switch (fmt) { case TextureFormat::RGBA8: format = MTLPixelFormatRGBA8Unorm; m_pxPitch = 4; break; case TextureFormat::I8: format = MTLPixelFormatR8Unorm; m_pxPitch = 1; break; default: Log.report(LogVisor::FatalError, "unsupported tex format"); } m_cpuSz = width * height * m_pxPitch; m_cpuBuf.reset(new uint8_t[m_cpuSz]); NSPtr desc; @autoreleasepool { desc = [[MTLTextureDescriptor texture2DDescriptorWithPixelFormat:format width:width height:height mipmapped:NO] retain]; } desc.get().usage = MTLTextureUsageShaderRead; m_texs[0] = [ctx->m_dev.get() newTextureWithDescriptor:desc.get()]; m_texs[1] = [ctx->m_dev.get() newTextureWithDescriptor:desc.get()]; } void update(int b); public: NSPtr> m_texs[2]; ~MetalTextureD() = default; void load(const void* data, size_t sz); void* map(size_t sz); void unmap(); }; class MetalTextureR : public ITextureR { friend class MetalDataFactory; friend struct MetalCommandQueue; size_t m_width = 0; size_t m_height = 0; size_t m_samples = 0; void Setup(MetalContext* ctx, size_t width, size_t height, size_t samples) { NSPtr desc; @autoreleasepool { desc = [[MTLTextureDescriptor texture2DDescriptorWithPixelFormat:MTLPixelFormatBGRA8Unorm width:width height:height mipmapped:NO] retain]; m_passDesc = [[MTLRenderPassDescriptor renderPassDescriptor] retain]; } desc.get().usage = MTLTextureUsageRenderTarget | MTLTextureUsageShaderRead; desc.get().storageMode = MTLStorageModePrivate; m_tex = [ctx->m_dev.get() newTextureWithDescriptor:desc.get()]; if (samples > 1) { desc.get().textureType = MTLTextureType2DMultisample; desc.get().sampleCount = samples; m_msaaTex = [ctx->m_dev.get() newTextureWithDescriptor:desc.get()]; desc.get().pixelFormat = MTLPixelFormatDepth32Float; m_depthTex = [ctx->m_dev.get() newTextureWithDescriptor:desc.get()]; m_passDesc.get().colorAttachments[0].texture = m_msaaTex.get(); m_passDesc.get().colorAttachments[0].resolveTexture = m_tex.get(); m_passDesc.get().colorAttachments[0].loadAction = MTLLoadActionClear; m_passDesc.get().colorAttachments[0].storeAction = MTLStoreActionMultisampleResolve; m_passDesc.get().depthAttachment.texture = m_depthTex.get(); m_passDesc.get().depthAttachment.loadAction = MTLLoadActionClear; m_passDesc.get().depthAttachment.storeAction = MTLStoreActionDontCare; } else { desc.get().pixelFormat = MTLPixelFormatDepth32Float; m_depthTex = [ctx->m_dev.get() newTextureWithDescriptor:desc.get()]; m_passDesc.get().colorAttachments[0].texture = m_tex.get(); m_passDesc.get().colorAttachments[0].loadAction = MTLLoadActionClear; m_passDesc.get().colorAttachments[0].storeAction = MTLStoreActionStore; m_passDesc.get().depthAttachment.texture = m_depthTex.get(); m_passDesc.get().depthAttachment.loadAction = MTLLoadActionClear; m_passDesc.get().depthAttachment.storeAction = MTLStoreActionDontCare; } } MetalTextureR(MetalContext* ctx, size_t width, size_t height, size_t samples) : m_width(width), m_height(height), m_samples(samples) { if (samples == 0) m_samples = 1; Setup(ctx, width, height, samples); } public: size_t samples() const {return m_samples;} NSPtr> m_tex; NSPtr> m_msaaTex; NSPtr> m_depthTex; NSPtr m_passDesc; ~MetalTextureR() = default; void resize(MetalContext* ctx, size_t width, size_t height) { if (width < 1) width = 1; if (height < 1) height = 1; m_width = width; m_height = height; Setup(ctx, width, height, m_samples); } id getRenderColorRes() {if (m_samples > 1) return m_msaaTex.get(); return m_tex.get();} }; static const size_t SEMANTIC_SIZE_TABLE[] = { 0, 12, 16, 12, 16, 16, 4, 8, 16, 16, 16 }; static const MTLVertexFormat SEMANTIC_TYPE_TABLE[] = { MTLVertexFormatInvalid, MTLVertexFormatFloat3, MTLVertexFormatFloat4, MTLVertexFormatFloat3, MTLVertexFormatFloat4, MTLVertexFormatFloat4, MTLVertexFormatUChar4Normalized, MTLVertexFormatFloat2, MTLVertexFormatFloat4, MTLVertexFormatFloat4, MTLVertexFormatFloat4 }; struct MetalVertexFormat : IVertexFormat { size_t m_elementCount; NSPtr m_vdesc; MetalVertexFormat(size_t elementCount, const VertexElementDescriptor* elements) : m_elementCount(elementCount) { size_t stride = 0; size_t instStride = 0; for (size_t i=0 ; isemantic & VertexSemantic::SemanticMask); if ((elemin->semantic & VertexSemantic::Instanced) != VertexSemantic::None) instStride += SEMANTIC_SIZE_TABLE[semantic]; else stride += SEMANTIC_SIZE_TABLE[semantic]; } m_vdesc = [MTLVertexDescriptor vertexDescriptor]; MTLVertexBufferLayoutDescriptor* layoutDesc = m_vdesc.get().layouts[0]; layoutDesc.stride = stride; layoutDesc.stepFunction = MTLVertexStepFunctionPerVertex; layoutDesc.stepRate = 1; layoutDesc = m_vdesc.get().layouts[1]; layoutDesc.stride = instStride; layoutDesc.stepFunction = MTLVertexStepFunctionPerInstance; layoutDesc.stepRate = 1; size_t offset = 0; size_t instOffset = 0; for (size_t i=0 ; isemantic & VertexSemantic::SemanticMask); if ((elemin->semantic & VertexSemantic::Instanced) != VertexSemantic::None) { attrDesc.offset = instOffset; attrDesc.bufferIndex = 1; instOffset += SEMANTIC_SIZE_TABLE[semantic]; } else { attrDesc.offset = offset; attrDesc.bufferIndex = 0; offset += SEMANTIC_SIZE_TABLE[semantic]; } attrDesc.format = SEMANTIC_TYPE_TABLE[semantic]; } } }; static const MTLBlendFactor BLEND_FACTOR_TABLE[] = { MTLBlendFactorZero, MTLBlendFactorOne, MTLBlendFactorSourceColor, MTLBlendFactorOneMinusSourceColor, MTLBlendFactorDestinationColor, MTLBlendFactorOneMinusDestinationColor, MTLBlendFactorSourceAlpha, MTLBlendFactorOneMinusSourceAlpha, MTLBlendFactorDestinationAlpha, MTLBlendFactorOneMinusDestinationAlpha }; class MetalShaderPipeline : public IShaderPipeline { friend class MetalDataFactory; MTLCullMode m_cullMode = MTLCullModeNone; MetalShaderPipeline(MetalContext* ctx, id vert, id frag, const MetalVertexFormat* vtxFmt, NSUInteger targetSamples, BlendFactor srcFac, BlendFactor dstFac, bool depthTest, bool depthWrite, bool backfaceCulling) { if (backfaceCulling) m_cullMode = MTLCullModeBack; NSPtr desc = [MTLRenderPipelineDescriptor new]; desc.get().vertexFunction = vert; desc.get().fragmentFunction = frag; desc.get().vertexDescriptor = vtxFmt->m_vdesc.get(); desc.get().sampleCount = targetSamples; desc.get().colorAttachments[0].pixelFormat = MTLPixelFormatBGRA8Unorm; desc.get().colorAttachments[0].blendingEnabled = dstFac != BlendFactor::Zero; desc.get().colorAttachments[0].sourceRGBBlendFactor = BLEND_FACTOR_TABLE[int(srcFac)]; desc.get().colorAttachments[0].destinationRGBBlendFactor = BLEND_FACTOR_TABLE[int(dstFac)]; desc.get().depthAttachmentPixelFormat = MTLPixelFormatDepth32Float; desc.get().inputPrimitiveTopology = MTLPrimitiveTopologyClassTriangle; NSError* err = nullptr; m_state = [ctx->m_dev.get() newRenderPipelineStateWithDescriptor:desc.get() error:&err]; if (err) Log.report(LogVisor::FatalError, "error making shader pipeline: %s", [[err localizedDescription] UTF8String]); NSPtr dsDesc = [MTLDepthStencilDescriptor new]; if (depthTest) dsDesc.get().depthCompareFunction = MTLCompareFunctionLessEqual; dsDesc.get().depthWriteEnabled = depthWrite; m_dsState = [ctx->m_dev.get() newDepthStencilStateWithDescriptor:dsDesc.get()]; } public: NSPtr> m_state; NSPtr> m_dsState; ~MetalShaderPipeline() = default; MetalShaderPipeline& operator=(const MetalShaderPipeline&) = delete; MetalShaderPipeline(const MetalShaderPipeline&) = delete; void bind(id enc) { [enc setRenderPipelineState:m_state.get()]; [enc setDepthStencilState:m_dsState.get()]; [enc setCullMode:m_cullMode]; } }; static id GetBufferGPUResource(const IGraphicsBuffer* buf, int idx) { if (buf->dynamic()) { const MetalGraphicsBufferD* cbuf = static_cast(buf); return cbuf->m_bufs[idx].get(); } else { const MetalGraphicsBufferS* cbuf = static_cast(buf); return cbuf->m_buf.get(); } } static id GetTextureGPUResource(const ITexture* tex, int idx) { switch (tex->type()) { case TextureType::Dynamic: { const MetalTextureD* ctex = static_cast(tex); return ctex->m_texs[idx].get(); } case TextureType::Static: { const MetalTextureS* ctex = static_cast(tex); return ctex->m_tex.get(); } case TextureType::StaticArray: { const MetalTextureSA* ctex = static_cast(tex); return ctex->m_tex.get(); } case TextureType::Render: { const MetalTextureR* ctex = static_cast(tex); return ctex->m_tex.get(); } default: break; } return nullptr; } struct MetalShaderDataBinding : IShaderDataBinding { MetalShaderPipeline* m_pipeline; IGraphicsBuffer* m_vbuf; IGraphicsBuffer* m_instVbo; IGraphicsBuffer* m_ibuf; size_t m_ubufCount; std::unique_ptr m_ubufs; size_t m_texCount; std::unique_ptr m_texs; MetalShaderDataBinding(MetalContext* ctx, IShaderPipeline* pipeline, IGraphicsBuffer* vbuf, IGraphicsBuffer* instVbo, IGraphicsBuffer* ibuf, size_t ubufCount, IGraphicsBuffer** ubufs, size_t texCount, ITexture** texs) : m_pipeline(static_cast(pipeline)), m_vbuf(vbuf), m_instVbo(instVbo), m_ibuf(ibuf), m_ubufCount(ubufCount), m_ubufs(new IGraphicsBuffer*[ubufCount]), m_texCount(texCount), m_texs(new ITexture*[texCount]) { for (size_t i=0 ; i enc, int b) { m_pipeline->bind(enc); if (m_vbuf) [enc setVertexBuffer:GetBufferGPUResource(m_vbuf, b) offset:0 atIndex:0]; if (m_instVbo) [enc setVertexBuffer:GetBufferGPUResource(m_instVbo, b) offset:0 atIndex:1]; for (size_t i=0 ; i> m_cmdBuf; NSPtr> m_enc; bool m_running = true; size_t m_fillBuf = 0; size_t m_drawBuf = 0; MetalCommandQueue(MetalContext* ctx, IWindow* parentWindow, IGraphicsContext* parent) : m_ctx(ctx), m_parentWindow(parentWindow), m_parent(parent) { @autoreleasepool { m_cmdBuf = [[ctx->m_q.get() commandBuffer] retain]; } } void stopRenderer() { m_running = false; if (m_inProgress) [m_cmdBuf.get() waitUntilCompleted]; } ~MetalCommandQueue() { if (m_running) stopRenderer(); } MetalShaderDataBinding* m_boundData = nullptr; void setShaderDataBinding(IShaderDataBinding* binding) { MetalShaderDataBinding* cbind = static_cast(binding); cbind->bind(m_enc.get(), m_fillBuf); m_boundData = cbind; } MetalTextureR* m_boundTarget = nullptr; void setRenderTarget(ITextureR* target) { MetalTextureR* ctarget = static_cast(target); [m_enc.get() endEncoding]; @autoreleasepool { m_enc = [[m_cmdBuf.get() renderCommandEncoderWithDescriptor:ctarget->m_passDesc.get()] retain]; } m_boundTarget = ctarget; } void setViewport(const SWindowRect& rect) { MTLViewport vp = {double(rect.location[0]), double(rect.location[1]), double(rect.size[0]), double(rect.size[1]), 0.0, 1.0}; [m_enc.get() setViewport:vp]; } void setScissor(const SWindowRect& rect) { MTLScissorRect scissor = {NSUInteger(rect.location[0]), NSUInteger(rect.location[1]), NSUInteger(rect.size[0]), NSUInteger(rect.size[1])}; [m_enc.get() setScissorRect:scissor]; } std::unordered_map> m_texResizes; void resizeRenderTexture(ITextureR* tex, size_t width, size_t height) { MetalTextureR* ctex = static_cast(tex); m_texResizes[ctex] = std::make_pair(width, height); } void flushBufferUpdates() {} float m_clearColor[4] = {0.0,0.0,0.0,1.0}; void setClearColor(const float rgba[4]) { m_clearColor[0] = rgba[0]; m_clearColor[1] = rgba[1]; m_clearColor[2] = rgba[2]; m_clearColor[3] = rgba[3]; } void clearTarget(bool render=true, bool depth=true) { if (!m_boundTarget) return; setRenderTarget(m_boundTarget); } MTLPrimitiveType m_primType = MTLPrimitiveTypeTriangle; void setDrawPrimitive(Primitive prim) { if (prim == Primitive::Triangles) m_primType = MTLPrimitiveTypeTriangle; else if (prim == Primitive::TriStrips) m_primType = MTLPrimitiveTypeTriangleStrip; } void draw(size_t start, size_t count) { [m_enc.get() drawPrimitives:m_primType vertexStart:start vertexCount:count]; } void drawIndexed(size_t start, size_t count) { [m_enc.get() drawIndexedPrimitives:m_primType indexCount:count indexType:MTLIndexTypeUInt32 indexBuffer:GetBufferGPUResource(m_boundData->m_ibuf, m_fillBuf) indexBufferOffset:start*4]; } void drawInstances(size_t start, size_t count, size_t instCount) { [m_enc.get() drawPrimitives:m_primType vertexStart:start vertexCount:count instanceCount:instCount]; } void drawInstancesIndexed(size_t start, size_t count, size_t instCount) { [m_enc.get() drawIndexedPrimitives:m_primType indexCount:count indexType:MTLIndexTypeUInt32 indexBuffer:GetBufferGPUResource(m_boundData->m_ibuf, m_fillBuf) indexBufferOffset:start*4 instanceCount:instCount]; } void resolveDisplay(ITextureR* source) { MetalContext::Window& w = m_ctx->m_windows[m_parentWindow]; MetalTextureR* csource = static_cast(source); [m_enc.get() endEncoding]; m_enc.reset(); @autoreleasepool { { std::unique_lock lk(w.m_resizeLock); if (w.m_needsResize) { w.m_metalLayer.drawableSize = w.m_size; w.m_needsResize = NO; return; } } id drawable = [w.m_metalLayer nextDrawable]; if (drawable) { id dest = drawable.texture; if (csource->m_tex.get().width == dest.width && csource->m_tex.get().height == dest.height) { id blitEnc = [m_cmdBuf.get() blitCommandEncoder]; [blitEnc copyFromTexture:csource->m_tex.get() sourceSlice:0 sourceLevel:0 sourceOrigin:MTLOriginMake(0, 0, 0) sourceSize:MTLSizeMake(dest.width, dest.height, 1) toTexture:dest destinationSlice:0 destinationLevel:0 destinationOrigin:MTLOriginMake(0, 0, 0)]; [blitEnc endEncoding]; [m_cmdBuf.get() presentDrawable:drawable]; } } } } bool m_inProgress = false; void execute() { if (!m_running) return; /* Update dynamic data here */ MetalDataFactory* gfxF = static_cast(m_parent->getDataFactory()); std::unique_lock datalk(gfxF->m_committedMutex); for (MetalData* d : gfxF->m_committedData) { for (std::unique_ptr& b : d->m_DBufs) b->update(m_fillBuf); for (std::unique_ptr& t : d->m_DTexs) t->update(m_fillBuf); } datalk.unlock(); @autoreleasepool { /* Abandon if in progress (renderer too slow) */ if (m_inProgress) { m_cmdBuf = [[m_ctx->m_q.get() commandBuffer] retain]; return; } /* Perform texture resizes */ if (m_texResizes.size()) { for (const auto& resize : m_texResizes) resize.first->resize(m_ctx, resize.second.first, resize.second.second); m_texResizes.clear(); m_cmdBuf = [[m_ctx->m_q.get() commandBuffer] retain]; return; } m_drawBuf = m_fillBuf; m_fillBuf ^= 1; [m_cmdBuf.get() addCompletedHandler:^(id buf) {m_inProgress = false;}]; m_inProgress = true; [m_cmdBuf.get() commit]; m_cmdBuf = [[m_ctx->m_q.get() commandBuffer] retain]; } } }; void MetalGraphicsBufferD::update(int b) { int slot = 1 << b; if ((slot & m_validSlots) == 0) { id res = m_bufs[b].get(); memcpy(res.contents, m_cpuBuf.get(), m_sz); m_validSlots |= slot; } } void MetalGraphicsBufferD::load(const void* data, size_t sz) { size_t bufSz = std::min(sz, m_sz); memcpy(m_cpuBuf.get(), data, bufSz); m_validSlots = 0; } void* MetalGraphicsBufferD::map(size_t sz) { if (sz > m_sz) return nullptr; return m_cpuBuf.get(); } void MetalGraphicsBufferD::unmap() { m_validSlots = 0; } void MetalTextureD::update(int b) { int slot = 1 << b; if ((slot & m_validSlots) == 0) { id res = m_texs[b].get(); [res replaceRegion:MTLRegionMake2D(0, 0, m_width, m_height) mipmapLevel:0 withBytes:m_cpuBuf.get() bytesPerRow:m_width*m_pxPitch]; m_validSlots |= slot; } } void MetalTextureD::load(const void* data, size_t sz) { size_t bufSz = std::min(sz, m_cpuSz); memcpy(m_cpuBuf.get(), data, bufSz); m_validSlots = 0; } void* MetalTextureD::map(size_t sz) { if (sz > m_cpuSz) return nullptr; return m_cpuBuf.get(); } void MetalTextureD::unmap() { m_validSlots = 0; } MetalDataFactory::MetalDataFactory(IGraphicsContext* parent, MetalContext* ctx) : m_parent(parent), m_ctx(ctx) {} IGraphicsBufferS* MetalDataFactory::newStaticBuffer(BufferUse use, const void* data, size_t stride, size_t count) { MetalGraphicsBufferS* retval = new MetalGraphicsBufferS(use, m_ctx, data, stride, count); if (!m_deferredData.get()) m_deferredData.reset(new struct MetalData()); m_deferredData->m_SBufs.emplace_back(retval); return retval; } IGraphicsBufferS* MetalDataFactory::newStaticBuffer(BufferUse use, std::unique_ptr&& data, size_t stride, size_t count) { std::unique_ptr d = std::move(data); MetalGraphicsBufferS* retval = new MetalGraphicsBufferS(use, m_ctx, d.get(), stride, count); if (!m_deferredData.get()) m_deferredData.reset(new struct MetalData()); m_deferredData->m_SBufs.emplace_back(retval); return retval; } IGraphicsBufferD* MetalDataFactory::newDynamicBuffer(BufferUse use, size_t stride, size_t count) { MetalCommandQueue* q = static_cast(m_parent->getCommandQueue()); MetalGraphicsBufferD* retval = new MetalGraphicsBufferD(q, use, m_ctx, stride, count); if (!m_deferredData.get()) m_deferredData.reset(new struct MetalData()); m_deferredData->m_DBufs.emplace_back(retval); return retval; } ITextureS* MetalDataFactory::newStaticTexture(size_t width, size_t height, size_t mips, TextureFormat fmt, const void* data, size_t sz) { MetalTextureS* retval = new MetalTextureS(m_ctx, width, height, mips, fmt, data, sz); if (!m_deferredData.get()) m_deferredData.reset(new struct MetalData()); m_deferredData->m_STexs.emplace_back(retval); return retval; } ITextureS* MetalDataFactory::newStaticTexture(size_t width, size_t height, size_t mips, TextureFormat fmt, std::unique_ptr&& data, size_t sz) { std::unique_ptr d = std::move(data); MetalTextureS* retval = new MetalTextureS(m_ctx, width, height, mips, fmt, d.get(), sz); if (!m_deferredData.get()) m_deferredData.reset(new struct MetalData()); m_deferredData->m_STexs.emplace_back(retval); return retval; } ITextureSA* MetalDataFactory::newStaticArrayTexture(size_t width, size_t height, size_t layers, TextureFormat fmt, const void* data, size_t sz) { MetalTextureSA* retval = new MetalTextureSA(m_ctx, width, height, layers, fmt, data, sz); if (!m_deferredData.get()) m_deferredData.reset(new struct MetalData()); m_deferredData->m_SATexs.emplace_back(retval); return retval; } ITextureD* MetalDataFactory::newDynamicTexture(size_t width, size_t height, TextureFormat fmt) { MetalCommandQueue* q = static_cast(m_parent->getCommandQueue()); MetalTextureD* retval = new MetalTextureD(q, m_ctx, width, height, fmt); if (!m_deferredData.get()) m_deferredData.reset(new struct MetalData()); m_deferredData->m_DTexs.emplace_back(retval); return retval; } ITextureR* MetalDataFactory::newRenderTexture(size_t width, size_t height, size_t samples) { MetalTextureR* retval = new MetalTextureR(m_ctx, width, height, samples); if (!m_deferredData.get()) m_deferredData.reset(new struct MetalData()); m_deferredData->m_RTexs.emplace_back(retval); return retval; } IVertexFormat* MetalDataFactory::newVertexFormat(size_t elementCount, const VertexElementDescriptor* elements) { MetalVertexFormat* retval = new struct MetalVertexFormat(elementCount, elements); if (!m_deferredData.get()) m_deferredData.reset(new struct MetalData()); m_deferredData->m_VFmts.emplace_back(retval); return retval; } IShaderPipeline* MetalDataFactory::newShaderPipeline(const char* vertSource, const char* fragSource, IVertexFormat* vtxFmt, unsigned targetSamples, BlendFactor srcFac, BlendFactor dstFac, bool depthTest, bool depthWrite, bool backfaceCulling) { NSPtr compOpts = [MTLCompileOptions new]; compOpts.get().languageVersion = MTLLanguageVersion1_1; NSError* err = nullptr; NSPtr> vertShaderLib = [m_ctx->m_dev.get() newLibraryWithSource:@(vertSource) options:compOpts.get() error:&err]; if (err) Log.report(LogVisor::FatalError, "error compiling vert shader: %s", [[err localizedDescription] UTF8String]); NSPtr> vertFunc = [vertShaderLib.get() newFunctionWithName:@"vmain"]; NSPtr> fragShaderLib = [m_ctx->m_dev.get() newLibraryWithSource:@(fragSource) options:compOpts.get() error:&err]; if (err) Log.report(LogVisor::FatalError, "error compiling frag shader: %s", [[err localizedDescription] UTF8String]); NSPtr> fragFunc = [fragShaderLib.get() newFunctionWithName:@"fmain"]; MetalShaderPipeline* retval = new MetalShaderPipeline(m_ctx, vertFunc.get(), fragFunc.get(), static_cast(vtxFmt), targetSamples, srcFac, dstFac, depthTest, depthWrite, backfaceCulling); if (!m_deferredData.get()) m_deferredData.reset(new struct MetalData()); m_deferredData->m_SPs.emplace_back(retval); return retval; } IShaderDataBinding* MetalDataFactory::newShaderDataBinding(IShaderPipeline* pipeline, IVertexFormat* vtxFormat, IGraphicsBuffer* vbuf, IGraphicsBuffer* instVbo, IGraphicsBuffer* ibuf, size_t ubufCount, IGraphicsBuffer** ubufs, size_t texCount, ITexture** texs) { MetalShaderDataBinding* retval = new MetalShaderDataBinding(m_ctx, pipeline, vbuf, instVbo, ibuf, ubufCount, ubufs, texCount, texs); if (!m_deferredData.get()) m_deferredData.reset(new struct MetalData()); m_deferredData->m_SBinds.emplace_back(retval); return retval; } void MetalDataFactory::reset() { delete m_deferredData.get(); m_deferredData.reset(); } GraphicsDataToken MetalDataFactory::commit() { if (!m_deferredData.get()) return GraphicsDataToken(this, nullptr); std::unique_lock lk(m_committedMutex); MetalData* retval = m_deferredData.get(); m_deferredData.reset(); m_committedData.insert(retval); return GraphicsDataToken(this, retval); } void MetalDataFactory::destroyData(IGraphicsData* d) { std::unique_lock lk(m_committedMutex); MetalData* data = static_cast(d); m_committedData.erase(data); delete data; } void MetalDataFactory::destroyAllData() { std::unique_lock lk(m_committedMutex); for (IGraphicsData* data : m_committedData) delete static_cast(data); m_committedData.clear(); } IGraphicsCommandQueue* _NewMetalCommandQueue(MetalContext* ctx, IWindow* parentWindow, IGraphicsContext* parent) { return new struct MetalCommandQueue(ctx, parentWindow, parent); } } #endif