boo/lib/graphicsdev/Metal.mm

987 lines
35 KiB
Plaintext
Raw Normal View History

2015-11-16 22:03:46 +00:00
#include "../mac/CocoaCommon.hpp"
#if BOO_HAS_METAL
#include <LogVisor/LogVisor.hpp>
#include "boo/graphicsdev/Metal.hpp"
#include "boo/IGraphicsContext.hpp"
#include <vector>
#define MAX_UNIFORM_COUNT 8
#define MAX_TEXTURE_COUNT 8
namespace boo
{
static LogVisor::LogModule Log("boo::Metal");
2015-11-09 02:24:45 +00:00
struct MetalCommandQueue;
2015-12-18 21:33:53 +00:00
ThreadLocalPtr<struct MetalData> MetalDataFactory::m_deferredData;
2015-11-09 02:24:45 +00:00
struct MetalData : IGraphicsData
{
std::vector<std::unique_ptr<class MetalShaderPipeline>> m_SPs;
std::vector<std::unique_ptr<struct MetalShaderDataBinding>> m_SBinds;
std::vector<std::unique_ptr<class MetalGraphicsBufferS>> m_SBufs;
std::vector<std::unique_ptr<class MetalGraphicsBufferD>> m_DBufs;
std::vector<std::unique_ptr<class MetalTextureS>> m_STexs;
2015-11-28 04:07:53 +00:00
std::vector<std::unique_ptr<class MetalTextureSA>> m_SATexs;
2015-11-09 02:24:45 +00:00
std::vector<std::unique_ptr<class MetalTextureD>> m_DTexs;
std::vector<std::unique_ptr<class MetalTextureR>> m_RTexs;
std::vector<std::unique_ptr<struct MetalVertexFormat>> m_VFmts;
};
2015-11-09 06:45:14 +00:00
#define MTL_STATIC MTLResourceCPUCacheModeWriteCombined|MTLResourceStorageModeShared
2015-11-09 02:24:45 +00:00
#define MTL_DYNAMIC MTLResourceCPUCacheModeWriteCombined|MTLResourceStorageModeShared
2015-11-09 02:24:45 +00:00
class MetalGraphicsBufferS : public IGraphicsBufferS
{
2015-11-09 02:24:45 +00:00
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)
{
2015-11-09 02:24:45 +00:00
m_buf = [ctx->m_dev.get() newBufferWithBytes:data length:m_sz options:MTL_STATIC];
}
public:
size_t m_stride;
size_t m_count;
2015-11-09 02:24:45 +00:00
size_t m_sz;
NSPtr<id<MTLBuffer>> m_buf;
~MetalGraphicsBufferS() = default;
};
2015-11-09 02:24:45 +00:00
class MetalGraphicsBufferD : public IGraphicsBufferD
{
2015-11-09 02:24:45 +00:00
friend class MetalDataFactory;
friend struct MetalCommandQueue;
MetalCommandQueue* m_q;
2015-12-02 22:25:30 +00:00
std::unique_ptr<uint8_t[]> m_cpuBuf;
int m_validSlots = 0;
2015-11-09 02:24:45 +00:00
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)
{
2015-12-02 22:25:30 +00:00
m_cpuBuf.reset(new uint8_t[m_sz]);
2015-11-09 02:24:45 +00:00
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];
}
2015-12-02 22:25:30 +00:00
void update(int b);
public:
size_t m_stride;
size_t m_count;
2015-11-09 02:24:45 +00:00
size_t m_sz;
NSPtr<id<MTLBuffer>> m_bufs[2];
MetalGraphicsBufferD() = default;
void load(const void* data, size_t sz);
void* map(size_t sz);
void unmap();
};
2015-11-09 02:24:45 +00:00
class MetalTextureS : public ITextureS
{
2015-11-09 02:24:45 +00:00
friend class MetalDataFactory;
MetalTextureS(MetalContext* ctx, size_t width, size_t height, size_t mips,
TextureFormat fmt, const void* data, size_t sz)
{
2015-11-28 04:07:53 +00:00
MTLPixelFormat pfmt = MTLPixelFormatRGBA8Unorm;
NSUInteger ppitch = 4;
switch (fmt)
{
case TextureFormat::I8:
pfmt = MTLPixelFormatR8Unorm;
ppitch = 1;
break;
default: break;
}
2015-11-18 23:55:25 +00:00
NSPtr<MTLTextureDescriptor*> desc;
@autoreleasepool
{
2015-11-28 04:07:53 +00:00
desc = [[MTLTextureDescriptor texture2DDescriptorWithPixelFormat:pfmt
2015-11-18 23:55:25 +00:00
width:width height:height
mipmapped:(mips>1)?YES:NO] retain];
}
2015-11-09 02:24:45 +00:00
desc.get().usage = MTLTextureUsageShaderRead;
desc.get().mipmapLevelCount = mips;
m_tex = [ctx->m_dev.get() newTextureWithDescriptor:desc.get()];
const uint8_t* dataIt = reinterpret_cast<const uint8_t*>(data);
for (size_t i=0 ; i<mips ; ++i)
{
2015-11-09 02:24:45 +00:00
[m_tex.get() replaceRegion:MTLRegionMake2D(0, 0, width, height)
mipmapLevel:i
withBytes:dataIt
2015-11-28 04:07:53 +00:00
bytesPerRow:width * ppitch];
dataIt += width * height * ppitch;
width /= 2;
height /= 2;
}
}
public:
2015-11-09 02:24:45 +00:00
NSPtr<id<MTLTexture>> m_tex;
~MetalTextureS() = default;
};
2015-11-09 02:24:45 +00:00
2015-11-28 04:07:53 +00:00
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<MTLTextureDescriptor*> 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<const uint8_t*>(data);
for (size_t i=0 ; i<layers ; ++i)
{
[m_tex.get() replaceRegion:MTLRegionMake2D(0, 0, width, height)
mipmapLevel:0
slice:i
withBytes:dataIt
bytesPerRow:width * ppitch
bytesPerImage:width * height * ppitch];
dataIt += width * height * ppitch;
}
}
public:
NSPtr<id<MTLTexture>> m_tex;
~MetalTextureSA() = default;
};
2015-11-09 02:24:45 +00:00
class MetalTextureD : public ITextureD
{
2015-11-09 02:24:45 +00:00
friend class MetalDataFactory;
friend struct MetalCommandQueue;
MetalCommandQueue* m_q;
size_t m_width = 0;
size_t m_height = 0;
2015-12-02 22:25:30 +00:00
std::unique_ptr<uint8_t[]> m_cpuBuf;
size_t m_cpuSz;
size_t m_pxPitch;
int m_validSlots = 0;
2015-11-09 02:24:45 +00:00
MetalTextureD(MetalCommandQueue* q, MetalContext* ctx, size_t width, size_t height, TextureFormat fmt)
: m_q(q), m_width(width), m_height(height)
{
2015-12-02 22:25:30 +00:00
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]);
2015-11-18 23:55:25 +00:00
NSPtr<MTLTextureDescriptor*> desc;
@autoreleasepool
{
2015-12-02 22:25:30 +00:00
desc = [[MTLTextureDescriptor texture2DDescriptorWithPixelFormat:format
2015-11-18 23:55:25 +00:00
width:width height:height
mipmapped:NO] retain];
}
2015-11-09 02:24:45 +00:00
desc.get().usage = MTLTextureUsageShaderRead;
m_texs[0] = [ctx->m_dev.get() newTextureWithDescriptor:desc.get()];
m_texs[1] = [ctx->m_dev.get() newTextureWithDescriptor:desc.get()];
}
2015-12-02 22:25:30 +00:00
void update(int b);
public:
2015-11-09 02:24:45 +00:00
NSPtr<id<MTLTexture>> m_texs[2];
~MetalTextureD() = default;
void load(const void* data, size_t sz);
void* map(size_t sz);
void unmap();
};
2015-11-09 02:24:45 +00:00
class MetalTextureR : public ITextureR
{
2015-11-09 02:24:45 +00:00
friend class MetalDataFactory;
friend struct MetalCommandQueue;
size_t m_width = 0;
size_t m_height = 0;
size_t m_samples = 0;
2015-11-09 02:24:45 +00:00
void Setup(MetalContext* ctx, size_t width, size_t height, size_t samples)
{
2015-11-18 23:55:25 +00:00
NSPtr<MTLTextureDescriptor*> desc;
2015-11-09 06:45:14 +00:00
@autoreleasepool
{
2015-11-18 23:55:25 +00:00
desc = [[MTLTextureDescriptor texture2DDescriptorWithPixelFormat:MTLPixelFormatBGRA8Unorm
width:width height:height
mipmapped:NO] retain];
2015-11-09 06:45:14 +00:00
m_passDesc = [[MTLRenderPassDescriptor renderPassDescriptor] retain];
}
2015-11-09 02:24:45 +00:00
desc.get().usage = MTLTextureUsageRenderTarget | MTLTextureUsageShaderRead;
desc.get().storageMode = MTLStorageModePrivate;
m_tex = [ctx->m_dev.get() newTextureWithDescriptor:desc.get()];
if (samples > 1)
{
2015-11-09 02:24:45 +00:00
desc.get().textureType = MTLTextureType2DMultisample;
desc.get().sampleCount = samples;
m_msaaTex = [ctx->m_dev.get() newTextureWithDescriptor:desc.get()];
2015-11-09 02:24:45 +00:00
desc.get().pixelFormat = MTLPixelFormatDepth32Float;
m_depthTex = [ctx->m_dev.get() newTextureWithDescriptor:desc.get()];
2015-11-09 02:24:45 +00:00
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;
2015-11-09 02:24:45 +00:00
m_passDesc.get().depthAttachment.texture = m_depthTex.get();
m_passDesc.get().depthAttachment.loadAction = MTLLoadActionClear;
m_passDesc.get().depthAttachment.storeAction = MTLStoreActionDontCare;
}
else
{
2015-11-09 02:24:45 +00:00
desc.get().pixelFormat = MTLPixelFormatDepth32Float;
m_depthTex = [ctx->m_dev.get() newTextureWithDescriptor:desc.get()];
2015-11-09 02:24:45 +00:00
m_passDesc.get().colorAttachments[0].texture = m_tex.get();
m_passDesc.get().colorAttachments[0].loadAction = MTLLoadActionClear;
m_passDesc.get().colorAttachments[0].storeAction = MTLStoreActionStore;
2015-11-09 02:24:45 +00:00
m_passDesc.get().depthAttachment.texture = m_depthTex.get();
m_passDesc.get().depthAttachment.loadAction = MTLLoadActionClear;
m_passDesc.get().depthAttachment.storeAction = MTLStoreActionDontCare;
}
}
2015-11-09 02:24:45 +00:00
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;}
2015-11-09 02:24:45 +00:00
NSPtr<id<MTLTexture>> m_tex;
NSPtr<id<MTLTexture>> m_msaaTex;
NSPtr<id<MTLTexture>> m_depthTex;
NSPtr<MTLRenderPassDescriptor*> m_passDesc;
~MetalTextureR() = default;
2015-11-09 02:24:45 +00:00
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);
}
2015-11-09 02:24:45 +00:00
id<MTLTexture> getRenderColorRes() {if (m_samples > 1) return m_msaaTex.get(); return m_tex.get();}
};
2015-11-09 02:24:45 +00:00
static const size_t SEMANTIC_SIZE_TABLE[] =
{
2015-11-28 04:07:53 +00:00
0,
12,
2015-11-28 04:07:53 +00:00
16,
12,
2015-11-28 04:07:53 +00:00
16,
16,
4,
8,
2015-11-28 04:07:53 +00:00
16,
16,
16
};
2015-11-09 02:24:45 +00:00
static const MTLVertexFormat SEMANTIC_TYPE_TABLE[] =
{
2015-11-28 04:07:53 +00:00
MTLVertexFormatInvalid,
2015-11-09 02:24:45 +00:00
MTLVertexFormatFloat3,
2015-11-28 04:07:53 +00:00
MTLVertexFormatFloat4,
2015-11-09 02:24:45 +00:00
MTLVertexFormatFloat3,
2015-11-28 04:07:53 +00:00
MTLVertexFormatFloat4,
MTLVertexFormatFloat4,
2015-11-09 02:24:45 +00:00
MTLVertexFormatUChar4Normalized,
MTLVertexFormatFloat2,
2015-11-28 04:07:53 +00:00
MTLVertexFormatFloat4,
MTLVertexFormatFloat4,
2015-11-09 02:24:45 +00:00
MTLVertexFormatFloat4
};
2015-11-09 02:24:45 +00:00
struct MetalVertexFormat : IVertexFormat
{
size_t m_elementCount;
2015-11-09 02:24:45 +00:00
NSPtr<MTLVertexDescriptor*> m_vdesc;
MetalVertexFormat(size_t elementCount, const VertexElementDescriptor* elements)
: m_elementCount(elementCount)
{
2015-11-09 02:24:45 +00:00
size_t stride = 0;
2015-11-28 04:07:53 +00:00
size_t instStride = 0;
2015-11-09 02:24:45 +00:00
for (size_t i=0 ; i<elementCount ; ++i)
{
const VertexElementDescriptor* elemin = &elements[i];
2015-11-28 04:07:53 +00:00
int semantic = int(elemin->semantic & VertexSemantic::SemanticMask);
if ((elemin->semantic & VertexSemantic::Instanced) != VertexSemantic::None)
instStride += SEMANTIC_SIZE_TABLE[semantic];
else
stride += SEMANTIC_SIZE_TABLE[semantic];
2015-11-09 02:24:45 +00:00
}
m_vdesc = [MTLVertexDescriptor vertexDescriptor];
2015-11-09 06:45:14 +00:00
MTLVertexBufferLayoutDescriptor* layoutDesc = m_vdesc.get().layouts[0];
layoutDesc.stride = stride;
layoutDesc.stepFunction = MTLVertexStepFunctionPerVertex;
layoutDesc.stepRate = 1;
2015-11-28 04:07:53 +00:00
layoutDesc = m_vdesc.get().layouts[1];
layoutDesc.stride = instStride;
layoutDesc.stepFunction = MTLVertexStepFunctionPerInstance;
layoutDesc.stepRate = 1;
size_t offset = 0;
2015-11-28 04:07:53 +00:00
size_t instOffset = 0;
for (size_t i=0 ; i<elementCount ; ++i)
{
const VertexElementDescriptor* elemin = &elements[i];
2015-11-09 02:24:45 +00:00
MTLVertexAttributeDescriptor* attrDesc = m_vdesc.get().attributes[i];
2015-11-28 04:07:53 +00:00
int semantic = int(elemin->semantic & 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];
}
}
};
2015-11-09 02:24:45 +00:00
static const MTLBlendFactor BLEND_FACTOR_TABLE[] =
{
MTLBlendFactorZero,
MTLBlendFactorOne,
MTLBlendFactorSourceColor,
MTLBlendFactorOneMinusSourceColor,
MTLBlendFactorDestinationColor,
MTLBlendFactorOneMinusDestinationColor,
MTLBlendFactorSourceAlpha,
MTLBlendFactorOneMinusSourceAlpha,
MTLBlendFactorDestinationAlpha,
MTLBlendFactorOneMinusDestinationAlpha
};
2015-11-09 02:24:45 +00:00
class MetalShaderPipeline : public IShaderPipeline
{
2015-11-09 02:24:45 +00:00
friend class MetalDataFactory;
MTLCullMode m_cullMode = MTLCullModeNone;
MetalShaderPipeline(MetalContext* ctx, id<MTLFunction> vert, id<MTLFunction> frag,
2015-11-28 04:07:53 +00:00
const MetalVertexFormat* vtxFmt, NSUInteger targetSamples,
BlendFactor srcFac, BlendFactor dstFac,
bool depthTest, bool depthWrite, bool backfaceCulling)
{
2015-11-09 02:24:45 +00:00
if (backfaceCulling)
m_cullMode = MTLCullModeBack;
NSPtr<MTLRenderPipelineDescriptor*> desc = [MTLRenderPipelineDescriptor new];
desc.get().vertexFunction = vert;
desc.get().fragmentFunction = frag;
desc.get().vertexDescriptor = vtxFmt->m_vdesc.get();
2015-11-28 04:07:53 +00:00
desc.get().sampleCount = targetSamples;
2015-11-09 06:45:14 +00:00
desc.get().colorAttachments[0].pixelFormat = MTLPixelFormatBGRA8Unorm;
2015-11-21 02:16:15 +00:00
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)];
2015-11-09 02:24:45 +00:00
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<MTLDepthStencilDescriptor*> dsDesc = [MTLDepthStencilDescriptor new];
if (depthTest)
dsDesc.get().depthCompareFunction = MTLCompareFunctionLessEqual;
dsDesc.get().depthWriteEnabled = depthWrite;
m_dsState = [ctx->m_dev.get() newDepthStencilStateWithDescriptor:dsDesc.get()];
}
public:
2015-11-09 02:24:45 +00:00
NSPtr<id<MTLRenderPipelineState>> m_state;
NSPtr<id<MTLDepthStencilState>> m_dsState;
~MetalShaderPipeline() = default;
MetalShaderPipeline& operator=(const MetalShaderPipeline&) = delete;
MetalShaderPipeline(const MetalShaderPipeline&) = delete;
void bind(id<MTLRenderCommandEncoder> enc)
{
2015-11-09 02:24:45 +00:00
[enc setRenderPipelineState:m_state.get()];
[enc setDepthStencilState:m_dsState.get()];
[enc setCullMode:m_cullMode];
}
2015-11-09 02:24:45 +00:00
};
static id<MTLBuffer> GetBufferGPUResource(const IGraphicsBuffer* buf, int idx)
{
if (buf->dynamic())
{
2015-11-09 02:24:45 +00:00
const MetalGraphicsBufferD* cbuf = static_cast<const MetalGraphicsBufferD*>(buf);
return cbuf->m_bufs[idx].get();
}
else
{
2015-11-09 02:24:45 +00:00
const MetalGraphicsBufferS* cbuf = static_cast<const MetalGraphicsBufferS*>(buf);
return cbuf->m_buf.get();
}
}
2015-11-09 02:24:45 +00:00
static id<MTLTexture> GetTextureGPUResource(const ITexture* tex, int idx)
{
2015-11-28 04:07:53 +00:00
switch (tex->type())
{
case TextureType::Dynamic:
{
2015-11-09 02:24:45 +00:00
const MetalTextureD* ctex = static_cast<const MetalTextureD*>(tex);
return ctex->m_texs[idx].get();
}
2015-11-28 04:07:53 +00:00
case TextureType::Static:
{
2015-11-09 02:24:45 +00:00
const MetalTextureS* ctex = static_cast<const MetalTextureS*>(tex);
return ctex->m_tex.get();
}
2015-11-28 04:07:53 +00:00
case TextureType::StaticArray:
{
const MetalTextureSA* ctex = static_cast<const MetalTextureSA*>(tex);
return ctex->m_tex.get();
}
case TextureType::Render:
{
2015-11-09 02:24:45 +00:00
const MetalTextureR* ctex = static_cast<const MetalTextureR*>(tex);
return ctex->m_tex.get();
}
2015-11-28 04:07:53 +00:00
default: break;
}
2015-11-09 02:24:45 +00:00
return nullptr;
}
2015-11-09 02:24:45 +00:00
struct MetalShaderDataBinding : IShaderDataBinding
{
2015-11-09 02:24:45 +00:00
MetalShaderPipeline* m_pipeline;
IGraphicsBuffer* m_vbuf;
2015-11-28 04:07:53 +00:00
IGraphicsBuffer* m_instVbo;
IGraphicsBuffer* m_ibuf;
size_t m_ubufCount;
std::unique_ptr<IGraphicsBuffer*[]> m_ubufs;
size_t m_texCount;
std::unique_ptr<ITexture*[]> m_texs;
2015-11-09 02:24:45 +00:00
MetalShaderDataBinding(MetalContext* ctx,
IShaderPipeline* pipeline,
2015-11-28 04:07:53 +00:00
IGraphicsBuffer* vbuf, IGraphicsBuffer* instVbo, IGraphicsBuffer* ibuf,
size_t ubufCount, IGraphicsBuffer** ubufs,
size_t texCount, ITexture** texs)
2015-11-09 02:24:45 +00:00
: m_pipeline(static_cast<MetalShaderPipeline*>(pipeline)),
m_vbuf(vbuf),
2015-11-28 04:07:53 +00:00
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<ubufCount ; ++i)
m_ubufs[i] = ubufs[i];
for (size_t i=0 ; i<texCount ; ++i)
m_texs[i] = texs[i];
}
2015-11-09 02:24:45 +00:00
void bind(id<MTLRenderCommandEncoder> enc, int b)
{
2015-11-09 02:24:45 +00:00
m_pipeline->bind(enc);
2015-11-28 04:07:53 +00:00
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];
2015-11-09 02:24:45 +00:00
for (size_t i=0 ; i<m_ubufCount ; ++i)
2015-11-28 04:07:53 +00:00
[enc setVertexBuffer:GetBufferGPUResource(m_ubufs[i], b) offset:0 atIndex:i+2];
2015-11-09 02:24:45 +00:00
for (size_t i=0 ; i<m_texCount ; ++i)
[enc setFragmentTexture:GetTextureGPUResource(m_texs[i], b) atIndex:i];
}
};
2015-11-09 02:24:45 +00:00
struct MetalCommandQueue : IGraphicsCommandQueue
{
2015-11-21 02:16:15 +00:00
Platform platform() const {return IGraphicsDataFactory::Platform::Metal;}
2015-11-09 02:24:45 +00:00
const char* platformName() const {return "Metal";}
MetalContext* m_ctx;
IWindow* m_parentWindow;
IGraphicsContext* m_parent;
2015-11-09 02:24:45 +00:00
NSPtr<id<MTLCommandBuffer>> m_cmdBuf;
NSPtr<id<MTLRenderCommandEncoder>> m_enc;
2015-12-05 01:12:52 +00:00
bool m_running = true;
size_t m_fillBuf = 0;
size_t m_drawBuf = 0;
2015-11-09 02:24:45 +00:00
MetalCommandQueue(MetalContext* ctx, IWindow* parentWindow, IGraphicsContext* parent)
: m_ctx(ctx), m_parentWindow(parentWindow), m_parent(parent)
{
2015-11-09 06:45:14 +00:00
@autoreleasepool
{
2015-12-09 22:23:22 +00:00
m_cmdBuf = [[ctx->m_q.get() commandBuffer] retain];
2015-11-09 06:45:14 +00:00
}
}
2015-12-05 01:12:52 +00:00
void stopRenderer()
{
m_running = false;
if (m_inProgress)
[m_cmdBuf.get() waitUntilCompleted];
}
~MetalCommandQueue()
{
if (m_running) stopRenderer();
}
2015-11-09 02:24:45 +00:00
MetalShaderDataBinding* m_boundData = nullptr;
void setShaderDataBinding(IShaderDataBinding* binding)
{
2015-11-09 02:24:45 +00:00
MetalShaderDataBinding* cbind = static_cast<MetalShaderDataBinding*>(binding);
cbind->bind(m_enc.get(), m_fillBuf);
m_boundData = cbind;
}
2015-11-09 02:24:45 +00:00
MetalTextureR* m_boundTarget = nullptr;
void setRenderTarget(ITextureR* target)
{
2015-11-09 02:24:45 +00:00
MetalTextureR* ctarget = static_cast<MetalTextureR*>(target);
[m_enc.get() endEncoding];
2015-11-18 23:55:25 +00:00
@autoreleasepool
{
m_enc = [[m_cmdBuf.get() renderCommandEncoderWithDescriptor:ctarget->m_passDesc.get()] retain];
}
m_boundTarget = ctarget;
}
void setViewport(const SWindowRect& rect)
{
2015-11-09 02:24:45 +00:00
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];
}
2015-11-28 04:07:53 +00:00
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];
}
2015-12-02 22:25:30 +00:00
2015-11-09 02:24:45 +00:00
std::unordered_map<MetalTextureR*, std::pair<size_t, size_t>> m_texResizes;
void resizeRenderTexture(ITextureR* tex, size_t width, size_t height)
{
2015-11-09 02:24:45 +00:00
MetalTextureR* ctex = static_cast<MetalTextureR*>(tex);
m_texResizes[ctex] = std::make_pair(width, height);
}
2015-11-18 23:55:25 +00:00
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;
2015-11-09 02:24:45 +00:00
setRenderTarget(m_boundTarget);
}
2015-11-09 02:24:45 +00:00
MTLPrimitiveType m_primType = MTLPrimitiveTypeTriangle;
void setDrawPrimitive(Primitive prim)
{
2015-11-21 02:16:15 +00:00
if (prim == Primitive::Triangles)
2015-11-09 02:24:45 +00:00
m_primType = MTLPrimitiveTypeTriangle;
2015-11-21 02:16:15 +00:00
else if (prim == Primitive::TriStrips)
2015-11-09 02:24:45 +00:00
m_primType = MTLPrimitiveTypeTriangleStrip;
}
void draw(size_t start, size_t count)
{
2015-11-09 02:24:45 +00:00
[m_enc.get() drawPrimitives:m_primType vertexStart:start vertexCount:count];
}
void drawIndexed(size_t start, size_t count)
{
2015-11-09 02:24:45 +00:00
[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)
{
2015-11-09 02:24:45 +00:00
[m_enc.get() drawPrimitives:m_primType vertexStart:start vertexCount:count instanceCount:instCount];
}
void drawInstancesIndexed(size_t start, size_t count, size_t instCount)
{
2015-11-09 02:24:45 +00:00
[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)
{
2015-11-09 02:24:45 +00:00
MetalContext::Window& w = m_ctx->m_windows[m_parentWindow];
MetalTextureR* csource = static_cast<MetalTextureR*>(source);
[m_enc.get() endEncoding];
2015-11-09 06:45:14 +00:00
m_enc.reset();
2015-11-18 23:55:25 +00:00
@autoreleasepool
{
2015-12-09 22:23:22 +00:00
{
std::unique_lock<std::mutex> lk(w.m_resizeLock);
if (w.m_needsResize)
{
w.m_metalLayer.drawableSize = w.m_size;
w.m_needsResize = NO;
return;
}
}
2015-11-18 23:55:25 +00:00
id<CAMetalDrawable> drawable = [w.m_metalLayer nextDrawable];
if (drawable)
{
id<MTLTexture> dest = drawable.texture;
2015-12-09 22:23:22 +00:00
if (csource->m_tex.get().width == dest.width &&
csource->m_tex.get().height == dest.height)
{
id<MTLBlitCommandEncoder> 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];
}
2015-11-18 23:55:25 +00:00
}
}
2015-11-09 02:24:45 +00:00
}
bool m_inProgress = false;
void execute()
{
2015-12-05 01:12:52 +00:00
if (!m_running)
return;
2015-12-02 22:25:30 +00:00
/* Update dynamic data here */
MetalDataFactory* gfxF = static_cast<MetalDataFactory*>(m_parent->getDataFactory());
2015-12-18 21:33:53 +00:00
std::unique_lock<std::mutex> datalk(gfxF->m_committedMutex);
2015-12-02 22:25:30 +00:00
for (MetalData* d : gfxF->m_committedData)
{
for (std::unique_ptr<MetalGraphicsBufferD>& b : d->m_DBufs)
b->update(m_fillBuf);
for (std::unique_ptr<MetalTextureD>& t : d->m_DTexs)
t->update(m_fillBuf);
}
2015-12-18 21:33:53 +00:00
datalk.unlock();
2015-12-02 22:25:30 +00:00
2015-11-09 06:45:14 +00:00
@autoreleasepool
{
2015-11-09 06:45:14 +00:00
/* Abandon if in progress (renderer too slow) */
if (m_inProgress)
{
2015-12-09 22:23:22 +00:00
m_cmdBuf = [[m_ctx->m_q.get() commandBuffer] retain];
2015-11-09 06:45:14 +00:00
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();
2015-12-09 22:23:22 +00:00
m_cmdBuf = [[m_ctx->m_q.get() commandBuffer] retain];
2015-11-09 06:45:14 +00:00
return;
}
m_drawBuf = m_fillBuf;
2015-12-02 22:25:30 +00:00
m_fillBuf ^= 1;
2015-11-09 06:45:14 +00:00
[m_cmdBuf.get() addCompletedHandler:^(id<MTLCommandBuffer> buf) {m_inProgress = false;}];
m_inProgress = true;
[m_cmdBuf.get() commit];
2015-12-09 22:23:22 +00:00
m_cmdBuf = [[m_ctx->m_q.get() commandBuffer] retain];
}
}
};
2015-11-09 02:24:45 +00:00
2015-12-02 22:25:30 +00:00
void MetalGraphicsBufferD::update(int b)
{
int slot = 1 << b;
if ((slot & m_validSlots) == 0)
{
id<MTLBuffer> res = m_bufs[b].get();
memcpy(res.contents, m_cpuBuf.get(), m_sz);
m_validSlots |= slot;
}
}
2015-11-09 02:24:45 +00:00
void MetalGraphicsBufferD::load(const void* data, size_t sz)
{
2015-12-02 22:25:30 +00:00
size_t bufSz = std::min(sz, m_sz);
memcpy(m_cpuBuf.get(), data, bufSz);
m_validSlots = 0;
}
2015-11-09 02:24:45 +00:00
void* MetalGraphicsBufferD::map(size_t sz)
{
2015-12-02 22:25:30 +00:00
if (sz > m_sz)
return nullptr;
return m_cpuBuf.get();
}
void MetalGraphicsBufferD::unmap()
{
m_validSlots = 0;
}
2015-12-02 22:25:30 +00:00
void MetalTextureD::update(int b)
{
int slot = 1 << b;
if ((slot & m_validSlots) == 0)
{
id<MTLTexture> 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;
}
}
2015-11-09 02:24:45 +00:00
void MetalTextureD::load(const void* data, size_t sz)
{
2015-12-02 22:25:30 +00:00
size_t bufSz = std::min(sz, m_cpuSz);
memcpy(m_cpuBuf.get(), data, bufSz);
m_validSlots = 0;
}
2015-11-09 02:24:45 +00:00
void* MetalTextureD::map(size_t sz)
{
2015-12-02 22:25:30 +00:00
if (sz > m_cpuSz)
return nullptr;
return m_cpuBuf.get();
}
2015-11-09 02:24:45 +00:00
void MetalTextureD::unmap()
{
2015-12-02 22:25:30 +00:00
m_validSlots = 0;
}
2015-11-09 02:24:45 +00:00
MetalDataFactory::MetalDataFactory(IGraphicsContext* parent, MetalContext* ctx)
2015-12-18 21:33:53 +00:00
: m_parent(parent), m_ctx(ctx) {}
IGraphicsBufferS* MetalDataFactory::newStaticBuffer(BufferUse use, const void* data, size_t stride, size_t count)
{
2015-11-09 02:24:45 +00:00
MetalGraphicsBufferS* retval = new MetalGraphicsBufferS(use, m_ctx, data, stride, count);
2015-12-18 21:33:53 +00:00
if (!m_deferredData.get())
m_deferredData.reset(new struct MetalData());
m_deferredData->m_SBufs.emplace_back(retval);
2015-11-09 02:24:45 +00:00
return retval;
}
IGraphicsBufferS* MetalDataFactory::newStaticBuffer(BufferUse use, std::unique_ptr<uint8_t[]>&& data, size_t stride, size_t count)
{
2015-11-09 02:24:45 +00:00
std::unique_ptr<uint8_t[]> d = std::move(data);
MetalGraphicsBufferS* retval = new MetalGraphicsBufferS(use, m_ctx, d.get(), stride, count);
2015-12-18 21:33:53 +00:00
if (!m_deferredData.get())
m_deferredData.reset(new struct MetalData());
m_deferredData->m_SBufs.emplace_back(retval);
2015-11-09 02:24:45 +00:00
return retval;
}
IGraphicsBufferD* MetalDataFactory::newDynamicBuffer(BufferUse use, size_t stride, size_t count)
{
2015-11-09 02:24:45 +00:00
MetalCommandQueue* q = static_cast<MetalCommandQueue*>(m_parent->getCommandQueue());
MetalGraphicsBufferD* retval = new MetalGraphicsBufferD(q, use, m_ctx, stride, count);
2015-12-18 21:33:53 +00:00
if (!m_deferredData.get())
m_deferredData.reset(new struct MetalData());
m_deferredData->m_DBufs.emplace_back(retval);
2015-11-09 02:24:45 +00:00
return retval;
}
ITextureS* MetalDataFactory::newStaticTexture(size_t width, size_t height, size_t mips, TextureFormat fmt,
const void* data, size_t sz)
{
2015-11-09 02:24:45 +00:00
MetalTextureS* retval = new MetalTextureS(m_ctx, width, height, mips, fmt, data, sz);
2015-12-18 21:33:53 +00:00
if (!m_deferredData.get())
m_deferredData.reset(new struct MetalData());
m_deferredData->m_STexs.emplace_back(retval);
2015-11-09 02:24:45 +00:00
return retval;
}
ITextureS* MetalDataFactory::newStaticTexture(size_t width, size_t height, size_t mips, TextureFormat fmt,
std::unique_ptr<uint8_t[]>&& data, size_t sz)
{
2015-11-09 02:24:45 +00:00
std::unique_ptr<uint8_t[]> d = std::move(data);
MetalTextureS* retval = new MetalTextureS(m_ctx, width, height, mips, fmt, d.get(), sz);
2015-12-18 21:33:53 +00:00
if (!m_deferredData.get())
m_deferredData.reset(new struct MetalData());
m_deferredData->m_STexs.emplace_back(retval);
2015-11-09 02:24:45 +00:00
return retval;
}
2015-11-28 04:07:53 +00:00
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);
2015-12-18 21:33:53 +00:00
if (!m_deferredData.get())
m_deferredData.reset(new struct MetalData());
m_deferredData->m_SATexs.emplace_back(retval);
2015-11-28 04:07:53 +00:00
return retval;
}
ITextureD* MetalDataFactory::newDynamicTexture(size_t width, size_t height, TextureFormat fmt)
{
2015-11-09 02:24:45 +00:00
MetalCommandQueue* q = static_cast<MetalCommandQueue*>(m_parent->getCommandQueue());
MetalTextureD* retval = new MetalTextureD(q, m_ctx, width, height, fmt);
2015-12-18 21:33:53 +00:00
if (!m_deferredData.get())
m_deferredData.reset(new struct MetalData());
m_deferredData->m_DTexs.emplace_back(retval);
2015-11-09 02:24:45 +00:00
return retval;
}
ITextureR* MetalDataFactory::newRenderTexture(size_t width, size_t height, size_t samples)
{
2015-11-09 02:24:45 +00:00
MetalTextureR* retval = new MetalTextureR(m_ctx, width, height, samples);
2015-12-18 21:33:53 +00:00
if (!m_deferredData.get())
m_deferredData.reset(new struct MetalData());
m_deferredData->m_RTexs.emplace_back(retval);
2015-11-09 02:24:45 +00:00
return retval;
}
IVertexFormat* MetalDataFactory::newVertexFormat(size_t elementCount, const VertexElementDescriptor* elements)
{
2015-11-09 02:24:45 +00:00
MetalVertexFormat* retval = new struct MetalVertexFormat(elementCount, elements);
2015-12-18 21:33:53 +00:00
if (!m_deferredData.get())
m_deferredData.reset(new struct MetalData());
m_deferredData->m_VFmts.emplace_back(retval);
2015-11-09 02:24:45 +00:00
return retval;
}
IShaderPipeline* MetalDataFactory::newShaderPipeline(const char* vertSource, const char* fragSource,
2015-11-28 04:07:53 +00:00
IVertexFormat* vtxFmt, unsigned targetSamples,
BlendFactor srcFac, BlendFactor dstFac,
bool depthTest, bool depthWrite, bool backfaceCulling)
{
2015-11-09 02:24:45 +00:00
NSPtr<MTLCompileOptions*> compOpts = [MTLCompileOptions new];
compOpts.get().languageVersion = MTLLanguageVersion1_1;
NSError* err = nullptr;
NSPtr<id<MTLLibrary>> 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]);
2015-11-09 06:45:14 +00:00
NSPtr<id<MTLFunction>> vertFunc = [vertShaderLib.get() newFunctionWithName:@"vmain"];
2015-11-09 02:24:45 +00:00
NSPtr<id<MTLLibrary>> 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]);
2015-11-09 06:45:14 +00:00
NSPtr<id<MTLFunction>> fragFunc = [fragShaderLib.get() newFunctionWithName:@"fmain"];
2015-11-09 02:24:45 +00:00
MetalShaderPipeline* retval = new MetalShaderPipeline(m_ctx, vertFunc.get(), fragFunc.get(),
2015-11-28 04:07:53 +00:00
static_cast<const MetalVertexFormat*>(vtxFmt), targetSamples,
2015-11-09 02:24:45 +00:00
srcFac, dstFac, depthTest, depthWrite, backfaceCulling);
2015-12-18 21:33:53 +00:00
if (!m_deferredData.get())
m_deferredData.reset(new struct MetalData());
m_deferredData->m_SPs.emplace_back(retval);
2015-11-09 02:24:45 +00:00
return retval;
}
IShaderDataBinding*
MetalDataFactory::newShaderDataBinding(IShaderPipeline* pipeline,
IVertexFormat* vtxFormat,
2015-11-28 04:07:53 +00:00
IGraphicsBuffer* vbuf, IGraphicsBuffer* instVbo, IGraphicsBuffer* ibuf,
size_t ubufCount, IGraphicsBuffer** ubufs,
size_t texCount, ITexture** texs)
{
2015-11-09 02:24:45 +00:00
MetalShaderDataBinding* retval =
2015-11-28 04:07:53 +00:00
new MetalShaderDataBinding(m_ctx, pipeline, vbuf, instVbo, ibuf, ubufCount, ubufs, texCount, texs);
2015-12-18 21:33:53 +00:00
if (!m_deferredData.get())
m_deferredData.reset(new struct MetalData());
m_deferredData->m_SBinds.emplace_back(retval);
2015-11-09 02:24:45 +00:00
return retval;
}
void MetalDataFactory::reset()
{
2015-12-18 21:33:53 +00:00
delete m_deferredData.get();
m_deferredData.reset();
}
2015-12-18 21:33:53 +00:00
GraphicsDataToken MetalDataFactory::commit()
{
2015-12-18 21:33:53 +00:00
if (!m_deferredData.get())
return GraphicsDataToken(this, nullptr);
std::unique_lock<std::mutex> lk(m_committedMutex);
MetalData* retval = m_deferredData.get();
m_deferredData.reset();
2015-11-09 02:24:45 +00:00
m_committedData.insert(retval);
2015-12-18 21:33:53 +00:00
return GraphicsDataToken(this, retval);
}
2015-11-09 02:24:45 +00:00
void MetalDataFactory::destroyData(IGraphicsData* d)
{
2015-12-18 21:33:53 +00:00
std::unique_lock<std::mutex> lk(m_committedMutex);
2015-11-09 02:24:45 +00:00
MetalData* data = static_cast<MetalData*>(d);
m_committedData.erase(data);
delete data;
}
void MetalDataFactory::destroyAllData()
{
2015-12-18 21:33:53 +00:00
std::unique_lock<std::mutex> lk(m_committedMutex);
2015-11-09 02:24:45 +00:00
for (IGraphicsData* data : m_committedData)
delete static_cast<MetalData*>(data);
m_committedData.clear();
}
2015-11-09 02:24:45 +00:00
IGraphicsCommandQueue* _NewMetalCommandQueue(MetalContext* ctx, IWindow* parentWindow,
IGraphicsContext* parent)
{
2015-11-09 02:24:45 +00:00
return new struct MetalCommandQueue(ctx, parentWindow, parent);
}
}
2015-11-16 22:03:46 +00:00
#endif