2015-11-16 22:03:46 +00:00
|
|
|
#include "../mac/CocoaCommon.hpp"
|
|
|
|
#if BOO_HAS_METAL
|
2016-03-08 21:18:38 +00:00
|
|
|
#include "logvisor/logvisor.hpp"
|
2017-11-05 06:12:49 +00:00
|
|
|
#include "boo/IApplication.hpp"
|
2015-11-08 00:36:38 +00:00
|
|
|
#include "boo/graphicsdev/Metal.hpp"
|
|
|
|
#include "boo/IGraphicsContext.hpp"
|
2017-01-20 03:52:40 +00:00
|
|
|
#include "Common.hpp"
|
2015-11-08 00:36:38 +00:00
|
|
|
#include <vector>
|
2017-03-05 07:54:58 +00:00
|
|
|
#include <unordered_map>
|
|
|
|
#include <unordered_set>
|
|
|
|
#include "xxhash.h"
|
2015-11-08 00:36:38 +00:00
|
|
|
|
2015-12-27 04:20:07 +00:00
|
|
|
#if !__has_feature(objc_arc)
|
|
|
|
#error ARC Required
|
|
|
|
#endif
|
|
|
|
|
2015-11-08 00:36:38 +00:00
|
|
|
#define MAX_UNIFORM_COUNT 8
|
|
|
|
#define MAX_TEXTURE_COUNT 8
|
|
|
|
|
|
|
|
namespace boo
|
|
|
|
{
|
2016-03-08 21:18:38 +00:00
|
|
|
static logvisor::Module Log("boo::Metal");
|
2015-11-09 02:24:45 +00:00
|
|
|
struct MetalCommandQueue;
|
2017-03-05 07:54:58 +00:00
|
|
|
class MetalDataFactoryImpl;
|
2015-11-09 02:24:45 +00:00
|
|
|
|
2017-03-05 07:54:58 +00:00
|
|
|
struct MetalShareableShader : IShareableShader<MetalDataFactoryImpl, MetalShareableShader>
|
|
|
|
{
|
|
|
|
id<MTLFunction> m_shader;
|
2017-11-05 06:12:49 +00:00
|
|
|
MetalShareableShader(MetalDataFactoryImpl& fac, uint64_t srcKey, uint64_t binKey, id<MTLFunction> s)
|
|
|
|
: IShareableShader(fac, srcKey, binKey), m_shader(s) {}
|
2017-03-05 07:54:58 +00:00
|
|
|
};
|
|
|
|
|
2017-11-03 09:39:26 +00:00
|
|
|
class MetalDataFactoryImpl : public MetalDataFactory, public GraphicsDataFactoryHead
|
2017-03-05 07:54:58 +00:00
|
|
|
{
|
|
|
|
friend struct MetalCommandQueue;
|
|
|
|
friend class MetalDataFactory::Context;
|
|
|
|
IGraphicsContext* m_parent;
|
|
|
|
std::unordered_map<uint64_t, std::unique_ptr<MetalShareableShader>> m_sharedShaders;
|
|
|
|
struct MetalContext* m_ctx;
|
|
|
|
|
|
|
|
public:
|
2017-11-05 06:12:49 +00:00
|
|
|
std::unordered_map<uint64_t, uint64_t> m_sourceToBinary;
|
|
|
|
char m_libfile[MAXPATHLEN];
|
|
|
|
bool m_hasCompiler = false;
|
|
|
|
|
2018-01-07 05:17:14 +00:00
|
|
|
MetalDataFactoryImpl(IGraphicsContext* parent, MetalContext* ctx)
|
|
|
|
: m_parent(parent), m_ctx(ctx)
|
2017-11-05 06:12:49 +00:00
|
|
|
{
|
|
|
|
snprintf(m_libfile, MAXPATHLEN, "%sboo_metal_shader.metallib", getenv("TMPDIR"));
|
|
|
|
for (auto& arg : APP->getArgs())
|
|
|
|
if (arg == "--metal-compile")
|
|
|
|
{
|
|
|
|
m_hasCompiler = CheckForMetalCompiler();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2017-10-27 10:09:22 +00:00
|
|
|
~MetalDataFactoryImpl() = default;
|
2017-03-05 07:54:58 +00:00
|
|
|
|
2017-11-03 09:39:26 +00:00
|
|
|
Platform platform() const { return Platform::Metal; }
|
|
|
|
const char* platformName() const { return "Metal"; }
|
|
|
|
void commitTransaction(const std::function<bool(IGraphicsDataFactory::Context& ctx)>&);
|
|
|
|
ObjToken<IGraphicsBufferD> newPoolBuffer(BufferUse use, size_t stride, size_t count);
|
2017-03-05 23:34:24 +00:00
|
|
|
void _unregisterShareableShader(uint64_t srcKey, uint64_t binKey) { m_sharedShaders.erase(srcKey); }
|
2017-11-05 06:12:49 +00:00
|
|
|
|
|
|
|
static bool CheckForMetalCompiler()
|
|
|
|
{
|
|
|
|
pid_t pid = fork();
|
|
|
|
if (!pid)
|
|
|
|
{
|
|
|
|
execlp("xcrun", "xcrun", "-sdk", "macosx", "metal", NULL);
|
|
|
|
/* xcrun returns 72 if metal command not found;
|
|
|
|
* emulate that if xcrun not found */
|
|
|
|
exit(72);
|
|
|
|
}
|
|
|
|
|
|
|
|
int status, ret;
|
|
|
|
while ((ret = waitpid(pid, &status, 0)) < 0 && errno == EINTR) {}
|
|
|
|
if (ret < 0)
|
|
|
|
return false;
|
|
|
|
return WEXITSTATUS(status) == 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint64_t CompileLib(std::vector<uint8_t>& blobOut, const char* source, uint64_t srcKey)
|
|
|
|
{
|
|
|
|
if (!m_hasCompiler)
|
|
|
|
{
|
|
|
|
/* Cache the source if there's no compiler */
|
|
|
|
size_t sourceLen = strlen(source);
|
|
|
|
|
|
|
|
/* First byte unset to indicate source data */
|
|
|
|
blobOut.resize(sourceLen + 2);
|
|
|
|
memcpy(&blobOut[1], source, sourceLen);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* Cache the binary otherwise */
|
|
|
|
int compilerOut[2];
|
|
|
|
int compilerIn[2];
|
|
|
|
pipe(compilerOut);
|
|
|
|
pipe(compilerIn);
|
|
|
|
|
|
|
|
/* Pipe source write to compiler */
|
|
|
|
pid_t compilerPid = fork();
|
|
|
|
if (!compilerPid)
|
|
|
|
{
|
|
|
|
dup2(compilerIn[0], STDIN_FILENO);
|
|
|
|
dup2(compilerOut[1], STDOUT_FILENO);
|
|
|
|
|
|
|
|
close(compilerOut[0]);
|
|
|
|
close(compilerOut[1]);
|
|
|
|
close(compilerIn[0]);
|
|
|
|
close(compilerIn[1]);
|
|
|
|
|
|
|
|
execlp("xcrun", "xcrun", "-sdk", "macosx", "metal", "-o", "/dev/stdout", "-Wno-unused-variable",
|
|
|
|
"-Wno-unused-const-variable", "-Wno-unused-function", "-x", "metal", "-", NULL);
|
|
|
|
fprintf(stderr, "execlp fail %s\n", strerror(errno));
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
close(compilerIn[0]);
|
|
|
|
close(compilerOut[1]);
|
|
|
|
|
|
|
|
/* Pipe compiler to linker */
|
|
|
|
pid_t linkerPid = fork();
|
|
|
|
if (!linkerPid)
|
|
|
|
{
|
|
|
|
dup2(compilerOut[0], STDIN_FILENO);
|
|
|
|
|
|
|
|
close(compilerOut[0]);
|
|
|
|
close(compilerIn[1]);
|
|
|
|
|
|
|
|
/* metallib doesn't like outputting to a pipe, so temp file will have to do */
|
|
|
|
execlp("xcrun", "xcrun", "-sdk", "macosx", "metallib", "-", "-o", m_libfile, NULL);
|
|
|
|
fprintf(stderr, "execlp fail %s\n", strerror(errno));
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
close(compilerOut[0]);
|
|
|
|
|
|
|
|
/* Stream in source */
|
|
|
|
const char* inPtr = source;
|
|
|
|
size_t inRem = strlen(source);
|
|
|
|
while (inRem)
|
|
|
|
{
|
|
|
|
ssize_t writeRes = write(compilerIn[1], inPtr, inRem);
|
|
|
|
if (writeRes < 0)
|
|
|
|
{
|
|
|
|
fprintf(stderr, "write fail %s\n", strerror(errno));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
inPtr += writeRes;
|
|
|
|
inRem -= writeRes;
|
|
|
|
}
|
|
|
|
close(compilerIn[1]);
|
|
|
|
|
|
|
|
/* Wait for completion */
|
|
|
|
int compilerStat, linkerStat;
|
|
|
|
if (waitpid(compilerPid, &compilerStat, 0) < 0 || waitpid(linkerPid, &linkerStat, 0) < 0)
|
|
|
|
{
|
|
|
|
fprintf(stderr, "waitpid fail %s\n", strerror(errno));
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (WEXITSTATUS(compilerStat) || WEXITSTATUS(linkerStat))
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
/* Copy temp file into buffer with first byte set to indicate binary data */
|
|
|
|
FILE* fin = fopen(m_libfile, "rb");
|
|
|
|
fseek(fin, 0, SEEK_END);
|
|
|
|
long libLen = ftell(fin);
|
|
|
|
fseek(fin, 0, SEEK_SET);
|
|
|
|
blobOut.resize(libLen + 1);
|
|
|
|
blobOut[0] = 1;
|
|
|
|
fread(&blobOut[1], 1, libLen, fin);
|
|
|
|
fclose(fin);
|
|
|
|
}
|
|
|
|
|
|
|
|
XXH64_state_t hashState;
|
|
|
|
XXH64_reset(&hashState, 0);
|
|
|
|
XXH64_update(&hashState, blobOut.data(), blobOut.size());
|
|
|
|
uint64_t binKey = XXH64_digest(&hashState);
|
|
|
|
m_sourceToBinary[srcKey] = binKey;
|
|
|
|
return binKey;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint64_t CompileLib(__strong id<MTLLibrary>& libOut, const char* source, uint64_t srcKey,
|
|
|
|
MTLCompileOptions* compOpts, NSError * _Nullable *err)
|
|
|
|
{
|
|
|
|
libOut = [m_ctx->m_dev newLibraryWithSource:@(source)
|
|
|
|
options:compOpts
|
|
|
|
error:err];
|
|
|
|
|
|
|
|
if (srcKey)
|
|
|
|
{
|
|
|
|
XXH64_state_t hashState;
|
|
|
|
XXH64_reset(&hashState, 0);
|
|
|
|
uint8_t zero = 0;
|
|
|
|
XXH64_update(&hashState, &zero, 1);
|
|
|
|
XXH64_update(&hashState, source, strlen(source) + 1);
|
|
|
|
uint64_t binKey = XXH64_digest(&hashState);
|
|
|
|
m_sourceToBinary[srcKey] = binKey;
|
|
|
|
return binKey;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
2017-03-05 07:54:58 +00:00
|
|
|
};
|
|
|
|
|
2017-11-12 05:14:10 +00:00
|
|
|
#define MTL_STATIC MTLResourceCPUCacheModeWriteCombined|MTLResourceStorageModeManaged
|
|
|
|
#define MTL_DYNAMIC MTLResourceCPUCacheModeWriteCombined|MTLResourceStorageModeManaged
|
2015-11-08 00:36:38 +00:00
|
|
|
|
2017-11-03 09:39:26 +00:00
|
|
|
class MetalGraphicsBufferS : public GraphicsDataNode<IGraphicsBufferS>
|
2015-11-08 00:36:38 +00:00
|
|
|
{
|
2015-11-09 02:24:45 +00:00
|
|
|
friend class MetalDataFactory;
|
|
|
|
friend struct MetalCommandQueue;
|
2017-11-03 09:39:26 +00:00
|
|
|
MetalGraphicsBufferS(const ObjToken<BaseGraphicsData>& parent, BufferUse use, MetalContext* ctx,
|
2017-03-14 07:02:53 +00:00
|
|
|
const void* data, size_t stride, size_t count)
|
2017-11-03 09:39:26 +00:00
|
|
|
: GraphicsDataNode<IGraphicsBufferS>(parent), m_stride(stride), m_count(count), m_sz(stride * count)
|
2015-11-08 00:36:38 +00:00
|
|
|
{
|
2016-01-11 22:26:40 +00:00
|
|
|
m_buf = [ctx->m_dev newBufferWithBytes:data length:m_sz options:MTL_STATIC];
|
2015-11-08 00:36:38 +00:00
|
|
|
}
|
|
|
|
public:
|
|
|
|
size_t m_stride;
|
|
|
|
size_t m_count;
|
2015-11-09 02:24:45 +00:00
|
|
|
size_t m_sz;
|
2016-01-11 22:26:40 +00:00
|
|
|
id<MTLBuffer> m_buf;
|
2015-11-09 02:24:45 +00:00
|
|
|
~MetalGraphicsBufferS() = default;
|
2015-11-08 00:36:38 +00:00
|
|
|
};
|
|
|
|
|
2017-11-03 09:39:26 +00:00
|
|
|
template<class DataCls>
|
|
|
|
class MetalGraphicsBufferD : public GraphicsDataNode<IGraphicsBufferD, DataCls>
|
2015-11-08 00:36:38 +00:00
|
|
|
{
|
2015-11-09 02:24:45 +00:00
|
|
|
friend class MetalDataFactory;
|
2017-03-05 07:54:58 +00:00
|
|
|
friend class MetalDataFactoryImpl;
|
2015-11-09 02:24:45 +00:00
|
|
|
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;
|
2017-11-05 06:12:49 +00:00
|
|
|
MetalGraphicsBufferD(const ObjToken<DataCls>& parent, MetalCommandQueue* q, BufferUse use,
|
2017-03-14 07:02:53 +00:00
|
|
|
MetalContext* ctx, size_t stride, size_t count)
|
2017-11-03 09:39:26 +00:00
|
|
|
: GraphicsDataNode<IGraphicsBufferD, DataCls>(parent), m_q(q), m_stride(stride),
|
|
|
|
m_count(count), m_sz(stride * count)
|
2015-11-08 00:36:38 +00:00
|
|
|
{
|
2015-12-02 22:25:30 +00:00
|
|
|
m_cpuBuf.reset(new uint8_t[m_sz]);
|
2016-01-11 22:26:40 +00:00
|
|
|
m_bufs[0] = [ctx->m_dev newBufferWithLength:m_sz options:MTL_DYNAMIC];
|
|
|
|
m_bufs[1] = [ctx->m_dev newBufferWithLength:m_sz options:MTL_DYNAMIC];
|
2015-11-08 00:36:38 +00:00
|
|
|
}
|
|
|
|
public:
|
|
|
|
size_t m_stride;
|
|
|
|
size_t m_count;
|
2015-11-09 02:24:45 +00:00
|
|
|
size_t m_sz;
|
2016-01-11 22:26:40 +00:00
|
|
|
id<MTLBuffer> m_bufs[2];
|
2015-11-09 02:24:45 +00:00
|
|
|
MetalGraphicsBufferD() = default;
|
2016-02-16 19:41:16 +00:00
|
|
|
|
2017-11-05 06:12:49 +00:00
|
|
|
void update(int b)
|
|
|
|
{
|
|
|
|
int slot = 1 << b;
|
|
|
|
if ((slot & m_validSlots) == 0)
|
|
|
|
{
|
|
|
|
id<MTLBuffer> res = m_bufs[b];
|
|
|
|
memcpy(res.contents, m_cpuBuf.get(), m_sz);
|
2017-11-12 05:14:10 +00:00
|
|
|
[res didModifyRange:NSMakeRange(0, m_sz)];
|
2017-11-05 06:12:49 +00:00
|
|
|
m_validSlots |= slot;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
void 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* map(size_t sz)
|
|
|
|
{
|
|
|
|
if (sz > m_sz)
|
|
|
|
return nullptr;
|
|
|
|
return m_cpuBuf.get();
|
|
|
|
}
|
|
|
|
void unmap()
|
|
|
|
{
|
|
|
|
m_validSlots = 0;
|
|
|
|
}
|
2015-11-08 00:36:38 +00:00
|
|
|
};
|
|
|
|
|
2017-11-03 09:39:26 +00:00
|
|
|
class MetalTextureS : public GraphicsDataNode<ITextureS>
|
2015-11-08 00:36:38 +00:00
|
|
|
{
|
2015-11-09 02:24:45 +00:00
|
|
|
friend class MetalDataFactory;
|
2017-11-05 06:12:49 +00:00
|
|
|
MetalTextureS(const ObjToken<BaseGraphicsData>& parent, MetalContext* ctx, size_t width, size_t height,
|
|
|
|
size_t mips, TextureFormat fmt, const void* data, size_t sz)
|
2017-11-03 09:39:26 +00:00
|
|
|
: GraphicsDataNode<ITextureS>(parent)
|
2015-11-08 00:36:38 +00:00
|
|
|
{
|
2015-11-28 04:07:53 +00:00
|
|
|
MTLPixelFormat pfmt = MTLPixelFormatRGBA8Unorm;
|
2016-02-16 19:41:16 +00:00
|
|
|
NSUInteger ppitchNum = 4;
|
|
|
|
NSUInteger ppitchDenom = 1;
|
2017-12-02 05:49:07 +00:00
|
|
|
NSUInteger bytesPerRow = width * ppitchNum;
|
2015-11-28 04:07:53 +00:00
|
|
|
switch (fmt)
|
|
|
|
{
|
|
|
|
case TextureFormat::I8:
|
|
|
|
pfmt = MTLPixelFormatR8Unorm;
|
2016-02-16 19:41:16 +00:00
|
|
|
ppitchNum = 1;
|
2017-12-02 05:49:07 +00:00
|
|
|
bytesPerRow = width * ppitchNum;
|
2015-11-28 04:07:53 +00:00
|
|
|
break;
|
2016-02-16 19:41:16 +00:00
|
|
|
case TextureFormat::DXT1:
|
|
|
|
pfmt = MTLPixelFormatBC1_RGBA;
|
|
|
|
ppitchNum = 1;
|
|
|
|
ppitchDenom = 2;
|
2017-12-02 05:49:07 +00:00
|
|
|
bytesPerRow = width * 8 / 4; // Metal wants this in blocks, not bytes
|
2015-11-28 04:07:53 +00:00
|
|
|
default: break;
|
|
|
|
}
|
2016-02-16 19:41:16 +00:00
|
|
|
|
2015-11-18 23:55:25 +00:00
|
|
|
@autoreleasepool
|
|
|
|
{
|
2016-01-11 22:26:40 +00:00
|
|
|
MTLTextureDescriptor* desc =
|
|
|
|
[MTLTextureDescriptor texture2DDescriptorWithPixelFormat:pfmt
|
|
|
|
width:width height:height
|
|
|
|
mipmapped:(mips>1)?YES:NO];
|
|
|
|
desc.usage = MTLTextureUsageShaderRead;
|
|
|
|
desc.mipmapLevelCount = mips;
|
|
|
|
m_tex = [ctx->m_dev newTextureWithDescriptor:desc];
|
|
|
|
const uint8_t* dataIt = reinterpret_cast<const uint8_t*>(data);
|
|
|
|
for (size_t i=0 ; i<mips ; ++i)
|
|
|
|
{
|
|
|
|
[m_tex replaceRegion:MTLRegionMake2D(0, 0, width, height)
|
|
|
|
mipmapLevel:i
|
|
|
|
withBytes:dataIt
|
2017-12-02 05:49:07 +00:00
|
|
|
bytesPerRow:bytesPerRow];
|
2016-02-16 19:41:16 +00:00
|
|
|
dataIt += width * height * ppitchNum / ppitchDenom;
|
2017-01-29 03:56:17 +00:00
|
|
|
if (width > 1)
|
2017-12-02 05:49:07 +00:00
|
|
|
{
|
2017-01-29 03:56:17 +00:00
|
|
|
width /= 2;
|
2017-12-02 05:49:07 +00:00
|
|
|
bytesPerRow /= 2;
|
|
|
|
}
|
2017-01-29 03:56:17 +00:00
|
|
|
if (height > 1)
|
|
|
|
height /= 2;
|
2016-01-11 22:26:40 +00:00
|
|
|
}
|
2015-11-08 00:36:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
public:
|
2016-01-11 22:26:40 +00:00
|
|
|
id<MTLTexture> m_tex;
|
2015-11-09 02:24:45 +00:00
|
|
|
~MetalTextureS() = default;
|
2015-11-08 00:36:38 +00:00
|
|
|
};
|
2016-02-16 19:41:16 +00:00
|
|
|
|
2017-11-03 09:39:26 +00:00
|
|
|
class MetalTextureSA : public GraphicsDataNode<ITextureSA>
|
2015-11-28 04:07:53 +00:00
|
|
|
{
|
|
|
|
friend class MetalDataFactory;
|
2017-11-05 06:12:49 +00:00
|
|
|
MetalTextureSA(const ObjToken<BaseGraphicsData>& parent, MetalContext* ctx, size_t width,
|
2017-03-14 07:02:53 +00:00
|
|
|
size_t height, size_t layers, size_t mips,
|
2015-11-28 04:07:53 +00:00
|
|
|
TextureFormat fmt, const void* data, size_t sz)
|
2017-11-03 09:39:26 +00:00
|
|
|
: GraphicsDataNode<ITextureSA>(parent)
|
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;
|
|
|
|
}
|
2016-02-16 19:41:16 +00:00
|
|
|
|
2015-11-28 04:07:53 +00:00
|
|
|
@autoreleasepool
|
|
|
|
{
|
2016-01-11 22:26:40 +00:00
|
|
|
MTLTextureDescriptor* desc =
|
|
|
|
[MTLTextureDescriptor texture2DDescriptorWithPixelFormat:pfmt
|
|
|
|
width:width height:height
|
2017-01-29 03:56:17 +00:00
|
|
|
mipmapped:(mips>1)?YES:NO];
|
2016-01-11 22:26:40 +00:00
|
|
|
desc.textureType = MTLTextureType2DArray;
|
|
|
|
desc.arrayLength = layers;
|
2017-01-29 03:56:17 +00:00
|
|
|
desc.mipmapLevelCount = mips;
|
2016-01-11 22:26:40 +00:00
|
|
|
desc.usage = MTLTextureUsageShaderRead;
|
|
|
|
m_tex = [ctx->m_dev newTextureWithDescriptor:desc];
|
|
|
|
const uint8_t* dataIt = reinterpret_cast<const uint8_t*>(data);
|
2017-01-29 03:56:17 +00:00
|
|
|
for (size_t i=0 ; i<mips ; ++i)
|
2016-01-11 22:26:40 +00:00
|
|
|
{
|
2017-01-29 03:56:17 +00:00
|
|
|
for (size_t j=0 ; j<layers ; ++j)
|
|
|
|
{
|
|
|
|
[m_tex replaceRegion:MTLRegionMake2D(0, 0, width, height)
|
|
|
|
mipmapLevel:i
|
|
|
|
slice:j
|
|
|
|
withBytes:dataIt
|
|
|
|
bytesPerRow:width * ppitch
|
|
|
|
bytesPerImage:width * height * ppitch];
|
|
|
|
dataIt += width * height * ppitch;
|
|
|
|
}
|
|
|
|
if (width > 1)
|
|
|
|
width /= 2;
|
|
|
|
if (height > 1)
|
|
|
|
height /= 2;
|
2016-01-11 22:26:40 +00:00
|
|
|
}
|
2015-11-28 04:07:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
public:
|
2016-01-11 22:26:40 +00:00
|
|
|
id<MTLTexture> m_tex;
|
2015-11-28 04:07:53 +00:00
|
|
|
~MetalTextureSA() = default;
|
|
|
|
};
|
2016-02-16 19:41:16 +00:00
|
|
|
|
2017-11-03 09:39:26 +00:00
|
|
|
class MetalTextureD : public GraphicsDataNode<ITextureD>
|
2015-11-08 00:36:38 +00:00
|
|
|
{
|
2015-11-09 02:24:45 +00:00
|
|
|
friend class MetalDataFactory;
|
|
|
|
friend struct MetalCommandQueue;
|
|
|
|
MetalCommandQueue* m_q;
|
2015-11-08 00:36:38 +00:00
|
|
|
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;
|
2017-11-05 06:12:49 +00:00
|
|
|
MetalTextureD(const ObjToken<BaseGraphicsData>& parent, MetalCommandQueue* q, MetalContext* ctx,
|
2017-03-14 07:02:53 +00:00
|
|
|
size_t width, size_t height, TextureFormat fmt)
|
2017-11-03 09:39:26 +00:00
|
|
|
: GraphicsDataNode<ITextureD>(parent), m_q(q), m_width(width), m_height(height)
|
2015-11-09 02:24:45 +00:00
|
|
|
{
|
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:
|
2016-03-08 21:18:38 +00:00
|
|
|
Log.report(logvisor::Fatal, "unsupported tex format");
|
2015-12-02 22:25:30 +00:00
|
|
|
}
|
2016-02-16 19:41:16 +00:00
|
|
|
|
2015-12-02 22:25:30 +00:00
|
|
|
m_cpuSz = width * height * m_pxPitch;
|
|
|
|
m_cpuBuf.reset(new uint8_t[m_cpuSz]);
|
2016-02-16 19:41:16 +00:00
|
|
|
|
2015-11-18 23:55:25 +00:00
|
|
|
@autoreleasepool
|
|
|
|
{
|
2016-01-11 22:26:40 +00:00
|
|
|
MTLTextureDescriptor* desc =
|
|
|
|
[MTLTextureDescriptor texture2DDescriptorWithPixelFormat:format
|
|
|
|
width:width height:height
|
|
|
|
mipmapped:NO];
|
|
|
|
desc.usage = MTLTextureUsageShaderRead;
|
|
|
|
m_texs[0] = [ctx->m_dev newTextureWithDescriptor:desc];
|
|
|
|
m_texs[1] = [ctx->m_dev newTextureWithDescriptor:desc];
|
2015-11-18 23:55:25 +00:00
|
|
|
}
|
2015-11-08 00:36:38 +00:00
|
|
|
}
|
|
|
|
public:
|
2016-01-11 22:26:40 +00:00
|
|
|
id<MTLTexture> m_texs[2];
|
2015-11-09 02:24:45 +00:00
|
|
|
~MetalTextureD() = default;
|
2016-02-16 19:41:16 +00:00
|
|
|
|
2017-11-05 06:12:49 +00:00
|
|
|
void update(int b)
|
|
|
|
{
|
|
|
|
int slot = 1 << b;
|
|
|
|
if ((slot & m_validSlots) == 0)
|
|
|
|
{
|
|
|
|
id<MTLTexture> res = m_texs[b];
|
|
|
|
[res replaceRegion:MTLRegionMake2D(0, 0, m_width, m_height)
|
|
|
|
mipmapLevel:0 withBytes:m_cpuBuf.get() bytesPerRow:m_width*m_pxPitch];
|
|
|
|
m_validSlots |= slot;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
void 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* map(size_t sz)
|
|
|
|
{
|
|
|
|
if (sz > m_cpuSz)
|
|
|
|
return nullptr;
|
|
|
|
return m_cpuBuf.get();
|
|
|
|
}
|
|
|
|
void unmap()
|
|
|
|
{
|
|
|
|
m_validSlots = 0;
|
|
|
|
}
|
2015-11-08 00:36:38 +00:00
|
|
|
};
|
2016-02-16 19:41:16 +00:00
|
|
|
|
2017-03-14 07:02:53 +00:00
|
|
|
#define MAX_BIND_TEXS 4
|
|
|
|
|
2017-11-03 09:39:26 +00:00
|
|
|
class MetalTextureR : public GraphicsDataNode<ITextureR>
|
2015-11-08 00:36:38 +00:00
|
|
|
{
|
2015-11-09 02:24:45 +00:00
|
|
|
friend class MetalDataFactory;
|
|
|
|
friend struct MetalCommandQueue;
|
2015-11-08 00:36:38 +00:00
|
|
|
size_t m_width = 0;
|
|
|
|
size_t m_height = 0;
|
|
|
|
size_t m_samples = 0;
|
2017-03-14 07:02:53 +00:00
|
|
|
size_t m_colorBindCount;
|
|
|
|
size_t m_depthBindCount;
|
2016-02-16 19:41:16 +00:00
|
|
|
|
2017-10-01 04:23:28 +00:00
|
|
|
void Setup(MetalContext* ctx)
|
2015-11-08 00:36:38 +00:00
|
|
|
{
|
2017-10-01 04:23:28 +00:00
|
|
|
if (m_colorBindCount > MAX_BIND_TEXS)
|
2017-03-14 07:02:53 +00:00
|
|
|
Log.report(logvisor::Fatal, "too many color bindings for render texture");
|
2017-10-01 04:23:28 +00:00
|
|
|
if (m_depthBindCount > MAX_BIND_TEXS)
|
2017-03-14 07:02:53 +00:00
|
|
|
Log.report(logvisor::Fatal, "too many depth bindings for render texture");
|
|
|
|
|
2015-11-09 06:45:14 +00:00
|
|
|
@autoreleasepool
|
|
|
|
{
|
2016-01-11 22:26:40 +00:00
|
|
|
MTLTextureDescriptor* desc =
|
|
|
|
[MTLTextureDescriptor texture2DDescriptorWithPixelFormat:MTLPixelFormatBGRA8Unorm
|
2017-10-01 04:23:28 +00:00
|
|
|
width:m_width height:m_height
|
2016-01-11 22:26:40 +00:00
|
|
|
mipmapped:NO];
|
|
|
|
desc.storageMode = MTLStorageModePrivate;
|
2015-11-09 02:24:45 +00:00
|
|
|
|
2017-10-01 04:23:28 +00:00
|
|
|
if (m_samples > 1)
|
2016-01-11 22:26:40 +00:00
|
|
|
{
|
|
|
|
desc.textureType = MTLTextureType2DMultisample;
|
2017-10-01 04:23:28 +00:00
|
|
|
desc.sampleCount = m_samples;
|
2016-02-27 01:38:13 +00:00
|
|
|
desc.usage = MTLTextureUsageRenderTarget;
|
2016-02-26 08:01:46 +00:00
|
|
|
m_colorTex = [ctx->m_dev newTextureWithDescriptor:desc];
|
2016-01-11 22:26:40 +00:00
|
|
|
|
|
|
|
desc.pixelFormat = MTLPixelFormatDepth32Float;
|
|
|
|
m_depthTex = [ctx->m_dev newTextureWithDescriptor:desc];
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2016-02-26 08:01:46 +00:00
|
|
|
desc.textureType = MTLTextureType2D;
|
|
|
|
desc.sampleCount = 1;
|
2016-02-27 01:38:13 +00:00
|
|
|
desc.usage = MTLTextureUsageRenderTarget;
|
2016-02-26 08:01:46 +00:00
|
|
|
m_colorTex = [ctx->m_dev newTextureWithDescriptor:desc];
|
|
|
|
|
2016-01-11 22:26:40 +00:00
|
|
|
desc.pixelFormat = MTLPixelFormatDepth32Float;
|
|
|
|
m_depthTex = [ctx->m_dev newTextureWithDescriptor:desc];
|
2017-10-01 04:23:28 +00:00
|
|
|
}
|
2017-03-14 07:02:53 +00:00
|
|
|
|
2017-10-01 04:23:28 +00:00
|
|
|
desc.textureType = MTLTextureType2D;
|
|
|
|
desc.sampleCount = 1;
|
|
|
|
desc.usage = MTLTextureUsageShaderRead;
|
|
|
|
if (m_colorBindCount)
|
|
|
|
{
|
|
|
|
desc.pixelFormat = MTLPixelFormatBGRA8Unorm;
|
|
|
|
for (int i=0 ; i<m_colorBindCount ; ++i)
|
2018-01-07 05:17:14 +00:00
|
|
|
{
|
2017-10-01 04:23:28 +00:00
|
|
|
m_colorBindTex[i] = [ctx->m_dev newTextureWithDescriptor:desc];
|
2018-01-07 05:17:14 +00:00
|
|
|
m_blitColor[i] = [MTLRenderPassDescriptor renderPassDescriptor];
|
|
|
|
m_blitColor[i].colorAttachments[0].texture = m_colorTex;
|
|
|
|
m_blitColor[i].colorAttachments[0].loadAction = MTLLoadActionLoad;
|
|
|
|
m_blitColor[i].colorAttachments[0].storeAction = MTLStoreActionMultisampleResolve;
|
|
|
|
m_blitColor[i].colorAttachments[0].resolveTexture = m_colorBindTex[i];
|
|
|
|
}
|
2017-10-01 04:23:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (m_depthBindCount)
|
|
|
|
{
|
|
|
|
desc.pixelFormat = MTLPixelFormatDepth32Float;
|
|
|
|
for (int i=0 ; i<m_depthBindCount ; ++i)
|
2018-01-07 05:17:14 +00:00
|
|
|
{
|
2017-10-01 04:23:28 +00:00
|
|
|
m_depthBindTex[i] = [ctx->m_dev newTextureWithDescriptor:desc];
|
2018-01-07 05:17:14 +00:00
|
|
|
m_blitDepth[i] = [MTLRenderPassDescriptor renderPassDescriptor];
|
|
|
|
m_blitDepth[i].depthAttachment.texture = m_colorTex;
|
|
|
|
m_blitDepth[i].depthAttachment.loadAction = MTLLoadActionLoad;
|
|
|
|
m_blitDepth[i].depthAttachment.storeAction = MTLStoreActionMultisampleResolve;
|
|
|
|
m_blitDepth[i].depthAttachment.resolveTexture = m_depthBindTex[i];
|
|
|
|
}
|
2016-02-26 08:01:46 +00:00
|
|
|
}
|
2016-01-11 22:26:40 +00:00
|
|
|
|
2016-04-03 06:18:30 +00:00
|
|
|
{
|
|
|
|
m_passDesc = [MTLRenderPassDescriptor renderPassDescriptor];
|
|
|
|
|
|
|
|
m_passDesc.colorAttachments[0].texture = m_colorTex;
|
|
|
|
m_passDesc.colorAttachments[0].loadAction = MTLLoadActionLoad;
|
|
|
|
m_passDesc.colorAttachments[0].storeAction = MTLStoreActionStore;
|
|
|
|
|
|
|
|
m_passDesc.depthAttachment.texture = m_depthTex;
|
|
|
|
m_passDesc.depthAttachment.loadAction = MTLLoadActionLoad;
|
|
|
|
m_passDesc.depthAttachment.storeAction = MTLStoreActionStore;
|
2016-04-03 06:22:03 +00:00
|
|
|
m_passDesc.depthAttachment.clearDepth = 0.f;
|
2016-04-03 06:18:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
m_clearDepthPassDesc = [MTLRenderPassDescriptor renderPassDescriptor];
|
2016-01-11 22:26:40 +00:00
|
|
|
|
2016-04-03 06:18:30 +00:00
|
|
|
m_clearDepthPassDesc.colorAttachments[0].texture = m_colorTex;
|
|
|
|
m_clearDepthPassDesc.colorAttachments[0].loadAction = MTLLoadActionLoad;
|
|
|
|
m_clearDepthPassDesc.colorAttachments[0].storeAction = MTLStoreActionStore;
|
2016-02-26 08:01:46 +00:00
|
|
|
|
2016-04-03 06:18:30 +00:00
|
|
|
m_clearDepthPassDesc.depthAttachment.texture = m_depthTex;
|
|
|
|
m_clearDepthPassDesc.depthAttachment.loadAction = MTLLoadActionClear;
|
|
|
|
m_clearDepthPassDesc.depthAttachment.storeAction = MTLStoreActionStore;
|
|
|
|
m_clearDepthPassDesc.depthAttachment.clearDepth = 0.f;
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
m_clearColorPassDesc = [MTLRenderPassDescriptor renderPassDescriptor];
|
|
|
|
|
|
|
|
m_clearColorPassDesc.colorAttachments[0].texture = m_colorTex;
|
|
|
|
m_clearColorPassDesc.colorAttachments[0].loadAction = MTLLoadActionClear;
|
|
|
|
m_clearColorPassDesc.colorAttachments[0].storeAction = MTLStoreActionStore;
|
2017-03-14 07:02:53 +00:00
|
|
|
m_clearDepthPassDesc.colorAttachments[0].clearColor = MTLClearColorMake(0.0, 0.0, 0.0, 0.0);
|
2016-04-03 06:18:30 +00:00
|
|
|
|
|
|
|
m_clearColorPassDesc.depthAttachment.texture = m_depthTex;
|
|
|
|
m_clearColorPassDesc.depthAttachment.loadAction = MTLLoadActionLoad;
|
|
|
|
m_clearColorPassDesc.depthAttachment.storeAction = MTLStoreActionStore;
|
2016-04-03 06:22:03 +00:00
|
|
|
m_clearColorPassDesc.depthAttachment.clearDepth = 0.f;
|
2016-04-03 06:18:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
m_clearBothPassDesc = [MTLRenderPassDescriptor renderPassDescriptor];
|
|
|
|
|
|
|
|
m_clearBothPassDesc.colorAttachments[0].texture = m_colorTex;
|
|
|
|
m_clearBothPassDesc.colorAttachments[0].loadAction = MTLLoadActionClear;
|
|
|
|
m_clearBothPassDesc.colorAttachments[0].storeAction = MTLStoreActionStore;
|
2017-03-14 07:02:53 +00:00
|
|
|
m_clearBothPassDesc.colorAttachments[0].clearColor = MTLClearColorMake(0.0, 0.0, 0.0, 0.0);
|
2016-04-03 06:18:30 +00:00
|
|
|
|
|
|
|
m_clearBothPassDesc.depthAttachment.texture = m_depthTex;
|
|
|
|
m_clearBothPassDesc.depthAttachment.loadAction = MTLLoadActionClear;
|
|
|
|
m_clearBothPassDesc.depthAttachment.storeAction = MTLStoreActionStore;
|
2016-04-03 06:22:03 +00:00
|
|
|
m_clearBothPassDesc.depthAttachment.clearDepth = 0.f;
|
2016-04-03 06:18:30 +00:00
|
|
|
}
|
2015-11-08 00:36:38 +00:00
|
|
|
}
|
|
|
|
}
|
2016-02-16 19:41:16 +00:00
|
|
|
|
2017-11-05 06:12:49 +00:00
|
|
|
MetalTextureR(const ObjToken<BaseGraphicsData>& parent, MetalContext* ctx, size_t width, size_t height,
|
|
|
|
size_t samples, size_t colorBindCount, size_t depthBindCount)
|
2017-11-03 09:39:26 +00:00
|
|
|
: GraphicsDataNode<ITextureR>(parent), m_width(width), m_height(height), m_samples(samples),
|
2017-03-14 07:02:53 +00:00
|
|
|
m_colorBindCount(colorBindCount),
|
|
|
|
m_depthBindCount(depthBindCount)
|
2015-11-08 00:36:38 +00:00
|
|
|
{
|
|
|
|
if (samples == 0) m_samples = 1;
|
2017-10-01 04:23:28 +00:00
|
|
|
Setup(ctx);
|
2015-11-08 00:36:38 +00:00
|
|
|
}
|
|
|
|
public:
|
|
|
|
size_t samples() const {return m_samples;}
|
2016-02-26 08:01:46 +00:00
|
|
|
id<MTLTexture> m_colorTex;
|
2016-01-11 22:26:40 +00:00
|
|
|
id<MTLTexture> m_depthTex;
|
2017-03-14 07:02:53 +00:00
|
|
|
id<MTLTexture> m_colorBindTex[MAX_BIND_TEXS] = {};
|
|
|
|
id<MTLTexture> m_depthBindTex[MAX_BIND_TEXS] = {};
|
2016-01-11 22:26:40 +00:00
|
|
|
MTLRenderPassDescriptor* m_passDesc;
|
2016-04-03 06:18:30 +00:00
|
|
|
MTLRenderPassDescriptor* m_clearDepthPassDesc;
|
|
|
|
MTLRenderPassDescriptor* m_clearColorPassDesc;
|
|
|
|
MTLRenderPassDescriptor* m_clearBothPassDesc;
|
2018-01-07 05:17:14 +00:00
|
|
|
MTLRenderPassDescriptor* m_blitColor[MAX_BIND_TEXS] = {};
|
|
|
|
MTLRenderPassDescriptor* m_blitDepth[MAX_BIND_TEXS] = {};
|
2015-11-09 02:24:45 +00:00
|
|
|
~MetalTextureR() = default;
|
2016-02-16 19:41:16 +00:00
|
|
|
|
2015-11-09 02:24:45 +00:00
|
|
|
void resize(MetalContext* ctx, size_t width, size_t height)
|
2015-11-08 00:36:38 +00:00
|
|
|
{
|
|
|
|
if (width < 1)
|
|
|
|
width = 1;
|
|
|
|
if (height < 1)
|
|
|
|
height = 1;
|
|
|
|
m_width = width;
|
|
|
|
m_height = height;
|
2017-10-01 04:23:28 +00:00
|
|
|
Setup(ctx);
|
2015-11-08 00:36:38 +00:00
|
|
|
}
|
|
|
|
};
|
2016-02-16 19:41:16 +00:00
|
|
|
|
2015-11-08 00:36:38 +00:00
|
|
|
static const size_t SEMANTIC_SIZE_TABLE[] =
|
|
|
|
{
|
2015-11-28 04:07:53 +00:00
|
|
|
0,
|
2015-11-08 00:36:38 +00:00
|
|
|
12,
|
2015-11-28 04:07:53 +00:00
|
|
|
16,
|
2015-11-08 00:36:38 +00:00
|
|
|
12,
|
2015-11-28 04:07:53 +00:00
|
|
|
16,
|
|
|
|
16,
|
2015-11-08 00:36:38 +00:00
|
|
|
4,
|
|
|
|
8,
|
2015-11-28 04:07:53 +00:00
|
|
|
16,
|
|
|
|
16,
|
2015-11-08 00:36:38 +00:00
|
|
|
16
|
|
|
|
};
|
|
|
|
|
2015-11-09 02:24:45 +00:00
|
|
|
static const MTLVertexFormat SEMANTIC_TYPE_TABLE[] =
|
2015-11-08 00:36:38 +00:00
|
|
|
{
|
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-08 00:36:38 +00:00
|
|
|
};
|
|
|
|
|
2017-11-03 09:39:26 +00:00
|
|
|
struct MetalVertexFormat : GraphicsDataNode<IVertexFormat>
|
2015-11-08 00:36:38 +00:00
|
|
|
{
|
|
|
|
size_t m_elementCount;
|
2016-01-11 22:26:40 +00:00
|
|
|
MTLVertexDescriptor* m_vdesc;
|
2016-12-10 02:31:50 +00:00
|
|
|
size_t m_stride = 0;
|
|
|
|
size_t m_instStride = 0;
|
2017-11-05 06:12:49 +00:00
|
|
|
MetalVertexFormat(const ObjToken<BaseGraphicsData>& parent,
|
|
|
|
size_t elementCount, const VertexElementDescriptor* elements)
|
|
|
|
: GraphicsDataNode<IVertexFormat>(parent), m_elementCount(elementCount)
|
2015-11-08 00:36:38 +00:00
|
|
|
{
|
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)
|
2016-12-10 02:31:50 +00:00
|
|
|
m_instStride += SEMANTIC_SIZE_TABLE[semantic];
|
2015-11-28 04:07:53 +00:00
|
|
|
else
|
2016-12-10 02:31:50 +00:00
|
|
|
m_stride += SEMANTIC_SIZE_TABLE[semantic];
|
2015-11-09 02:24:45 +00:00
|
|
|
}
|
2016-02-16 19:41:16 +00:00
|
|
|
|
2015-11-09 02:24:45 +00:00
|
|
|
m_vdesc = [MTLVertexDescriptor vertexDescriptor];
|
2016-01-11 22:26:40 +00:00
|
|
|
MTLVertexBufferLayoutDescriptor* layoutDesc = m_vdesc.layouts[0];
|
2016-12-10 02:31:50 +00:00
|
|
|
layoutDesc.stride = m_stride;
|
2015-11-09 06:45:14 +00:00
|
|
|
layoutDesc.stepFunction = MTLVertexStepFunctionPerVertex;
|
|
|
|
layoutDesc.stepRate = 1;
|
2016-02-16 19:41:16 +00:00
|
|
|
|
2016-01-11 22:26:40 +00:00
|
|
|
layoutDesc = m_vdesc.layouts[1];
|
2016-12-10 02:31:50 +00:00
|
|
|
layoutDesc.stride = m_instStride;
|
2015-11-28 04:07:53 +00:00
|
|
|
layoutDesc.stepFunction = MTLVertexStepFunctionPerInstance;
|
|
|
|
layoutDesc.stepRate = 1;
|
2016-02-16 19:41:16 +00:00
|
|
|
|
2015-11-08 00:36:38 +00:00
|
|
|
size_t offset = 0;
|
2015-11-28 04:07:53 +00:00
|
|
|
size_t instOffset = 0;
|
2015-11-08 00:36:38 +00:00
|
|
|
for (size_t i=0 ; i<elementCount ; ++i)
|
|
|
|
{
|
|
|
|
const VertexElementDescriptor* elemin = &elements[i];
|
2016-01-11 22:26:40 +00:00
|
|
|
MTLVertexAttributeDescriptor* attrDesc = m_vdesc.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-08 00:36:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
2016-02-16 19:41:16 +00:00
|
|
|
|
2015-11-09 02:24:45 +00:00
|
|
|
static const MTLBlendFactor BLEND_FACTOR_TABLE[] =
|
|
|
|
{
|
|
|
|
MTLBlendFactorZero,
|
|
|
|
MTLBlendFactorOne,
|
|
|
|
MTLBlendFactorSourceColor,
|
|
|
|
MTLBlendFactorOneMinusSourceColor,
|
|
|
|
MTLBlendFactorDestinationColor,
|
|
|
|
MTLBlendFactorOneMinusDestinationColor,
|
|
|
|
MTLBlendFactorSourceAlpha,
|
|
|
|
MTLBlendFactorOneMinusSourceAlpha,
|
|
|
|
MTLBlendFactorDestinationAlpha,
|
2017-01-18 20:56:26 +00:00
|
|
|
MTLBlendFactorOneMinusDestinationAlpha,
|
|
|
|
#if __MAC_OS_X_VERSION_MAX_ALLOWED >= 101200
|
|
|
|
MTLBlendFactorSource1Color,
|
|
|
|
MTLBlendFactorOneMinusSource1Color,
|
|
|
|
#else
|
|
|
|
MTLBlendFactorSourceColor,
|
|
|
|
MTLBlendFactorOneMinusSourceColor,
|
|
|
|
#endif
|
2015-11-08 00:36:38 +00:00
|
|
|
};
|
|
|
|
|
2016-03-24 08:05:19 +00:00
|
|
|
static const MTLPrimitiveType PRIMITIVE_TABLE[] =
|
|
|
|
{
|
|
|
|
MTLPrimitiveTypeTriangle,
|
|
|
|
MTLPrimitiveTypeTriangleStrip
|
|
|
|
};
|
|
|
|
|
2017-03-14 07:02:53 +00:00
|
|
|
#define COLOR_WRITE_MASK (MTLColorWriteMaskRed | MTLColorWriteMaskGreen | MTLColorWriteMaskBlue)
|
|
|
|
|
2017-11-03 09:39:26 +00:00
|
|
|
class MetalShaderPipeline : public GraphicsDataNode<IShaderPipeline>
|
2015-11-08 00:36:38 +00:00
|
|
|
{
|
2015-11-09 02:24:45 +00:00
|
|
|
friend class MetalDataFactory;
|
2017-03-14 07:02:53 +00:00
|
|
|
friend struct MetalCommandQueue;
|
2016-12-10 02:31:50 +00:00
|
|
|
friend struct MetalShaderDataBinding;
|
2015-11-09 02:24:45 +00:00
|
|
|
MTLCullMode m_cullMode = MTLCullModeNone;
|
2016-03-24 08:05:19 +00:00
|
|
|
MTLPrimitiveType m_drawPrim;
|
2017-03-05 07:54:58 +00:00
|
|
|
MetalShareableShader::Token m_vert;
|
|
|
|
MetalShareableShader::Token m_frag;
|
2016-02-16 19:41:16 +00:00
|
|
|
|
2017-11-05 06:12:49 +00:00
|
|
|
MetalShaderPipeline(const ObjToken<BaseGraphicsData>& parent,
|
2017-03-14 07:02:53 +00:00
|
|
|
MetalContext* ctx,
|
2017-03-05 07:54:58 +00:00
|
|
|
MetalShareableShader::Token&& vert,
|
|
|
|
MetalShareableShader::Token&& frag,
|
2017-11-05 06:12:49 +00:00
|
|
|
const ObjToken<IVertexFormat>& vtxFmt, NSUInteger targetSamples,
|
2016-03-24 08:05:19 +00:00
|
|
|
BlendFactor srcFac, BlendFactor dstFac, Primitive prim,
|
2017-03-14 07:02:53 +00:00
|
|
|
ZTest depthTest, bool depthWrite, bool colorWrite,
|
|
|
|
bool alphaWrite, CullMode culling)
|
2017-11-03 09:39:26 +00:00
|
|
|
: GraphicsDataNode<IShaderPipeline>(parent),
|
2017-11-05 06:12:49 +00:00
|
|
|
m_drawPrim(PRIMITIVE_TABLE[int(prim)]),
|
2017-03-05 07:54:58 +00:00
|
|
|
m_vert(std::move(vert)), m_frag(std::move(frag))
|
2015-11-08 00:36:38 +00:00
|
|
|
{
|
2017-03-10 21:07:29 +00:00
|
|
|
switch (culling)
|
|
|
|
{
|
|
|
|
case CullMode::None:
|
|
|
|
default:
|
|
|
|
m_cullMode = MTLCullModeNone;
|
|
|
|
break;
|
|
|
|
case CullMode::Backface:
|
2015-11-09 02:24:45 +00:00
|
|
|
m_cullMode = MTLCullModeBack;
|
2017-03-10 21:07:29 +00:00
|
|
|
break;
|
|
|
|
case CullMode::Frontface:
|
|
|
|
m_cullMode = MTLCullModeFront;
|
|
|
|
break;
|
|
|
|
}
|
2016-02-16 19:41:16 +00:00
|
|
|
|
2016-01-11 22:26:40 +00:00
|
|
|
MTLRenderPipelineDescriptor* desc = [MTLRenderPipelineDescriptor new];
|
2017-03-05 07:54:58 +00:00
|
|
|
desc.vertexFunction = m_vert.get().m_shader;
|
|
|
|
desc.fragmentFunction = m_frag.get().m_shader;
|
2017-11-05 06:12:49 +00:00
|
|
|
desc.vertexDescriptor = vtxFmt.cast<MetalVertexFormat>()->m_vdesc;
|
2016-01-11 22:26:40 +00:00
|
|
|
desc.sampleCount = targetSamples;
|
|
|
|
desc.colorAttachments[0].pixelFormat = MTLPixelFormatBGRA8Unorm;
|
2017-03-14 07:02:53 +00:00
|
|
|
desc.colorAttachments[0].writeMask = (colorWrite ? COLOR_WRITE_MASK : 0) |
|
|
|
|
(alphaWrite ? MTLColorWriteMaskAlpha : 0);
|
2016-01-11 22:26:40 +00:00
|
|
|
desc.colorAttachments[0].blendingEnabled = dstFac != BlendFactor::Zero;
|
2017-09-05 02:59:41 +00:00
|
|
|
if (srcFac == BlendFactor::Subtract || dstFac == BlendFactor::Subtract)
|
|
|
|
{
|
|
|
|
desc.colorAttachments[0].sourceRGBBlendFactor = MTLBlendFactorDestinationColor;
|
|
|
|
desc.colorAttachments[0].destinationRGBBlendFactor = MTLBlendFactorSourceColor;
|
|
|
|
desc.colorAttachments[0].rgbBlendOperation = MTLBlendOperationSubtract;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
desc.colorAttachments[0].sourceRGBBlendFactor = BLEND_FACTOR_TABLE[int(srcFac)];
|
|
|
|
desc.colorAttachments[0].destinationRGBBlendFactor = BLEND_FACTOR_TABLE[int(dstFac)];
|
|
|
|
desc.colorAttachments[0].rgbBlendOperation = MTLBlendOperationAdd;
|
|
|
|
}
|
2017-03-14 07:02:53 +00:00
|
|
|
desc.colorAttachments[0].sourceAlphaBlendFactor = MTLBlendFactorOne;
|
|
|
|
desc.colorAttachments[0].destinationAlphaBlendFactor = MTLBlendFactorZero;
|
2016-01-11 22:26:40 +00:00
|
|
|
desc.depthAttachmentPixelFormat = MTLPixelFormatDepth32Float;
|
|
|
|
desc.inputPrimitiveTopology = MTLPrimitiveTopologyClassTriangle;
|
2015-11-09 02:24:45 +00:00
|
|
|
NSError* err = nullptr;
|
2016-01-11 22:26:40 +00:00
|
|
|
m_state = [ctx->m_dev newRenderPipelineStateWithDescriptor:desc error:&err];
|
2015-11-09 02:24:45 +00:00
|
|
|
if (err)
|
2016-03-08 21:18:38 +00:00
|
|
|
Log.report(logvisor::Fatal, "error making shader pipeline: %s",
|
2015-11-09 02:24:45 +00:00
|
|
|
[[err localizedDescription] UTF8String]);
|
2016-02-16 19:41:16 +00:00
|
|
|
|
2016-01-11 22:26:40 +00:00
|
|
|
MTLDepthStencilDescriptor* dsDesc = [MTLDepthStencilDescriptor new];
|
2017-03-14 07:02:53 +00:00
|
|
|
switch (depthTest)
|
|
|
|
{
|
|
|
|
case ZTest::None:
|
|
|
|
default:
|
|
|
|
dsDesc.depthCompareFunction = MTLCompareFunctionAlways;
|
|
|
|
break;
|
|
|
|
case ZTest::LEqual:
|
2016-07-31 22:39:05 +00:00
|
|
|
dsDesc.depthCompareFunction = MTLCompareFunctionGreaterEqual;
|
2017-03-14 07:02:53 +00:00
|
|
|
break;
|
|
|
|
case ZTest::Greater:
|
|
|
|
dsDesc.depthCompareFunction = MTLCompareFunctionLess;
|
|
|
|
break;
|
2017-09-03 05:52:53 +00:00
|
|
|
case ZTest::GEqual:
|
|
|
|
dsDesc.depthCompareFunction = MTLCompareFunctionLessEqual;
|
|
|
|
break;
|
2017-03-14 07:02:53 +00:00
|
|
|
case ZTest::Equal:
|
|
|
|
dsDesc.depthCompareFunction = MTLCompareFunctionEqual;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2016-01-11 22:26:40 +00:00
|
|
|
dsDesc.depthWriteEnabled = depthWrite;
|
|
|
|
m_dsState = [ctx->m_dev newDepthStencilStateWithDescriptor:dsDesc];
|
2015-11-08 00:36:38 +00:00
|
|
|
}
|
|
|
|
public:
|
2016-01-11 22:26:40 +00:00
|
|
|
id<MTLRenderPipelineState> m_state;
|
|
|
|
id<MTLDepthStencilState> m_dsState;
|
2015-11-09 02:24:45 +00:00
|
|
|
~MetalShaderPipeline() = default;
|
|
|
|
MetalShaderPipeline& operator=(const MetalShaderPipeline&) = delete;
|
|
|
|
MetalShaderPipeline(const MetalShaderPipeline&) = delete;
|
2016-02-16 19:41:16 +00:00
|
|
|
|
2015-11-09 02:24:45 +00:00
|
|
|
void bind(id<MTLRenderCommandEncoder> enc)
|
2015-11-08 00:36:38 +00:00
|
|
|
{
|
2016-01-11 22:26:40 +00:00
|
|
|
[enc setRenderPipelineState:m_state];
|
|
|
|
[enc setDepthStencilState:m_dsState];
|
2015-11-09 02:24:45 +00:00
|
|
|
[enc setCullMode:m_cullMode];
|
2015-11-08 00:36:38 +00:00
|
|
|
}
|
2015-11-09 02:24:45 +00:00
|
|
|
};
|
2016-02-16 19:41:16 +00:00
|
|
|
|
2017-11-05 06:12:49 +00:00
|
|
|
static id<MTLBuffer> GetBufferGPUResource(const ObjToken<IGraphicsBuffer>& buf, int idx)
|
2015-11-08 00:36:38 +00:00
|
|
|
{
|
|
|
|
if (buf->dynamic())
|
|
|
|
{
|
2017-11-05 06:12:49 +00:00
|
|
|
const MetalGraphicsBufferD<BaseGraphicsData>* cbuf = buf.cast<MetalGraphicsBufferD<BaseGraphicsData>>();
|
2016-01-11 22:26:40 +00:00
|
|
|
return cbuf->m_bufs[idx];
|
2015-11-08 00:36:38 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2017-11-05 06:12:49 +00:00
|
|
|
const MetalGraphicsBufferS* cbuf = buf.cast<MetalGraphicsBufferS>();
|
2016-01-11 22:26:40 +00:00
|
|
|
return cbuf->m_buf;
|
2015-11-08 00:36:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-05 06:12:49 +00:00
|
|
|
static id<MTLTexture> GetTextureGPUResource(const ObjToken<ITexture>& tex, int idx, int bindIdx, bool depth)
|
2015-11-08 00:36:38 +00:00
|
|
|
{
|
2015-11-28 04:07:53 +00:00
|
|
|
switch (tex->type())
|
|
|
|
{
|
|
|
|
case TextureType::Dynamic:
|
2015-11-08 00:36:38 +00:00
|
|
|
{
|
2017-11-05 06:12:49 +00:00
|
|
|
const MetalTextureD* ctex = tex.cast<MetalTextureD>();
|
2016-01-11 22:26:40 +00:00
|
|
|
return ctex->m_texs[idx];
|
2015-11-08 00:36:38 +00:00
|
|
|
}
|
2015-11-28 04:07:53 +00:00
|
|
|
case TextureType::Static:
|
2015-11-08 00:36:38 +00:00
|
|
|
{
|
2017-11-05 06:12:49 +00:00
|
|
|
const MetalTextureS* ctex = tex.cast<MetalTextureS>();
|
2016-01-11 22:26:40 +00:00
|
|
|
return ctex->m_tex;
|
2015-11-08 00:36:38 +00:00
|
|
|
}
|
2015-11-28 04:07:53 +00:00
|
|
|
case TextureType::StaticArray:
|
|
|
|
{
|
2017-11-05 06:12:49 +00:00
|
|
|
const MetalTextureSA* ctex = tex.cast<MetalTextureSA>();
|
2016-01-11 22:26:40 +00:00
|
|
|
return ctex->m_tex;
|
2015-11-28 04:07:53 +00:00
|
|
|
}
|
|
|
|
case TextureType::Render:
|
2015-11-08 00:36:38 +00:00
|
|
|
{
|
2017-11-05 06:12:49 +00:00
|
|
|
const MetalTextureR* ctex = tex.cast<MetalTextureR>();
|
2017-03-14 07:02:53 +00:00
|
|
|
return depth ? ctex->m_depthBindTex[bindIdx] : ctex->m_colorBindTex[bindIdx];
|
2015-11-08 00:36:38 +00:00
|
|
|
}
|
2015-11-28 04:07:53 +00:00
|
|
|
default: break;
|
|
|
|
}
|
2015-11-09 02:24:45 +00:00
|
|
|
return nullptr;
|
|
|
|
}
|
2015-11-08 00:36:38 +00:00
|
|
|
|
2017-11-03 09:39:26 +00:00
|
|
|
struct MetalShaderDataBinding : GraphicsDataNode<IShaderDataBinding>
|
2015-11-08 00:36:38 +00:00
|
|
|
{
|
2017-11-05 06:12:49 +00:00
|
|
|
ObjToken<IShaderPipeline> m_pipeline;
|
|
|
|
ObjToken<IGraphicsBuffer> m_vbuf;
|
|
|
|
ObjToken<IGraphicsBuffer> m_instVbo;
|
|
|
|
ObjToken<IGraphicsBuffer> m_ibuf;
|
|
|
|
std::vector<ObjToken<IGraphicsBuffer>> m_ubufs;
|
|
|
|
std::vector<size_t> m_ubufOffs;
|
|
|
|
std::vector<bool> m_fubufs;
|
2017-03-14 07:02:53 +00:00
|
|
|
struct BoundTex
|
|
|
|
{
|
2017-11-05 06:12:49 +00:00
|
|
|
ObjToken<ITexture> tex;
|
2017-03-14 07:02:53 +00:00
|
|
|
int idx;
|
|
|
|
bool depth;
|
|
|
|
};
|
2017-11-05 06:12:49 +00:00
|
|
|
std::vector<BoundTex> m_texs;
|
2016-12-10 02:31:50 +00:00
|
|
|
size_t m_baseVert;
|
|
|
|
size_t m_baseInst;
|
|
|
|
|
2017-11-05 06:12:49 +00:00
|
|
|
MetalShaderDataBinding(const ObjToken<BaseGraphicsData>& d,
|
2017-01-20 03:52:40 +00:00
|
|
|
MetalContext* ctx,
|
2017-11-05 06:12:49 +00:00
|
|
|
const ObjToken<IShaderPipeline>& pipeline,
|
|
|
|
const ObjToken<IGraphicsBuffer>& vbuf,
|
|
|
|
const ObjToken<IGraphicsBuffer>& instVbo,
|
|
|
|
const ObjToken<IGraphicsBuffer>& ibuf,
|
|
|
|
size_t ubufCount, const ObjToken<IGraphicsBuffer>* ubufs, const PipelineStage* ubufStages,
|
2016-03-30 21:07:12 +00:00
|
|
|
const size_t* ubufOffs, const size_t* ubufSizes,
|
2017-11-05 06:12:49 +00:00
|
|
|
size_t texCount, const ObjToken<ITexture>* texs,
|
2017-03-14 07:02:53 +00:00
|
|
|
const int* texBindIdxs, const bool* depthBind,
|
|
|
|
size_t baseVert, size_t baseInst)
|
2017-11-03 09:39:26 +00:00
|
|
|
: GraphicsDataNode<IShaderDataBinding>(d),
|
2017-11-05 06:12:49 +00:00
|
|
|
m_pipeline(pipeline),
|
2015-11-08 00:36:38 +00:00
|
|
|
m_vbuf(vbuf),
|
2015-11-28 04:07:53 +00:00
|
|
|
m_instVbo(instVbo),
|
2015-11-08 00:36:38 +00:00
|
|
|
m_ibuf(ibuf),
|
2016-12-10 02:31:50 +00:00
|
|
|
m_baseVert(baseVert),
|
|
|
|
m_baseInst(baseInst)
|
2015-11-08 00:36:38 +00:00
|
|
|
{
|
2016-04-05 02:37:46 +00:00
|
|
|
if (ubufCount && ubufStages)
|
2016-03-30 21:07:12 +00:00
|
|
|
{
|
2017-11-05 06:12:49 +00:00
|
|
|
m_fubufs.reserve(ubufCount);
|
2016-04-05 02:37:46 +00:00
|
|
|
for (size_t i=0 ; i<ubufCount ; ++i)
|
2017-11-05 06:12:49 +00:00
|
|
|
m_fubufs.push_back(ubufStages[i] == PipelineStage::Fragment);
|
2016-04-05 02:37:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (ubufCount && ubufOffs && ubufSizes)
|
|
|
|
{
|
2017-11-05 06:12:49 +00:00
|
|
|
m_ubufOffs.reserve(ubufCount);
|
2016-03-30 21:07:12 +00:00
|
|
|
for (size_t i=0 ; i<ubufCount ; ++i)
|
|
|
|
{
|
|
|
|
#ifndef NDEBUG
|
|
|
|
if (ubufOffs[i] % 256)
|
|
|
|
Log.report(logvisor::Fatal, "non-256-byte-aligned uniform-offset %d provided to newShaderDataBinding", int(i));
|
|
|
|
#endif
|
2017-11-05 06:12:49 +00:00
|
|
|
m_ubufOffs.push_back(ubufOffs[i]);
|
2016-03-30 21:07:12 +00:00
|
|
|
}
|
|
|
|
}
|
2017-11-05 06:12:49 +00:00
|
|
|
m_ubufs.reserve(ubufCount);
|
2015-11-08 00:36:38 +00:00
|
|
|
for (size_t i=0 ; i<ubufCount ; ++i)
|
2016-03-30 21:07:12 +00:00
|
|
|
{
|
|
|
|
#ifndef NDEBUG
|
|
|
|
if (!ubufs[i])
|
|
|
|
Log.report(logvisor::Fatal, "null uniform-buffer %d provided to newShaderDataBinding", int(i));
|
|
|
|
#endif
|
2017-11-05 06:12:49 +00:00
|
|
|
m_ubufs.push_back(ubufs[i]);
|
2016-03-30 21:07:12 +00:00
|
|
|
}
|
2017-11-05 06:12:49 +00:00
|
|
|
m_texs.reserve(texCount);
|
2015-11-08 00:36:38 +00:00
|
|
|
for (size_t i=0 ; i<texCount ; ++i)
|
2016-03-30 21:07:12 +00:00
|
|
|
{
|
2017-11-05 06:12:49 +00:00
|
|
|
m_texs.push_back({texs[i], texBindIdxs ? texBindIdxs[i] : 0, depthBind ? depthBind[i] : false});
|
2016-03-30 21:07:12 +00:00
|
|
|
}
|
2015-11-08 00:36:38 +00:00
|
|
|
}
|
2016-02-16 19:41:16 +00:00
|
|
|
|
2015-11-09 02:24:45 +00:00
|
|
|
void bind(id<MTLRenderCommandEncoder> enc, int b)
|
2015-11-08 00:36:38 +00:00
|
|
|
{
|
2017-11-05 06:12:49 +00:00
|
|
|
m_pipeline.cast<MetalShaderPipeline>()->bind(enc);
|
2016-12-10 02:31:50 +00:00
|
|
|
|
2015-11-28 04:07:53 +00:00
|
|
|
if (m_vbuf)
|
2017-03-14 07:02:53 +00:00
|
|
|
{
|
2018-01-05 03:00:58 +00:00
|
|
|
id<MTLBuffer> buf = GetBufferGPUResource(m_vbuf, b);
|
|
|
|
[enc setVertexBuffer:buf offset:0 atIndex:0];
|
2017-03-14 07:02:53 +00:00
|
|
|
}
|
2015-11-28 04:07:53 +00:00
|
|
|
if (m_instVbo)
|
2017-03-14 07:02:53 +00:00
|
|
|
{
|
2018-01-05 03:00:58 +00:00
|
|
|
id<MTLBuffer> buf = GetBufferGPUResource(m_instVbo, b);
|
|
|
|
[enc setVertexBuffer:buf offset:0 atIndex:1];
|
2017-03-14 07:02:53 +00:00
|
|
|
}
|
2017-11-05 06:12:49 +00:00
|
|
|
if (m_ubufOffs.size())
|
|
|
|
for (size_t i=0 ; i<m_ubufs.size() ; ++i)
|
2016-04-05 02:37:46 +00:00
|
|
|
{
|
2017-11-05 06:12:49 +00:00
|
|
|
if (m_fubufs.size() && m_fubufs[i])
|
2016-04-05 02:37:46 +00:00
|
|
|
[enc setFragmentBuffer:GetBufferGPUResource(m_ubufs[i], b) offset:m_ubufOffs[i] atIndex:i+2];
|
2016-04-04 06:13:11 +00:00
|
|
|
else
|
2016-04-05 02:37:46 +00:00
|
|
|
[enc setVertexBuffer:GetBufferGPUResource(m_ubufs[i], b) offset:m_ubufOffs[i] atIndex:i+2];
|
|
|
|
}
|
2016-03-30 21:07:12 +00:00
|
|
|
else
|
2017-11-05 06:12:49 +00:00
|
|
|
for (size_t i=0 ; i<m_ubufs.size() ; ++i)
|
2016-04-05 02:37:46 +00:00
|
|
|
{
|
2017-11-05 06:12:49 +00:00
|
|
|
if (m_fubufs.size() && m_fubufs[i])
|
2016-04-05 02:37:46 +00:00
|
|
|
[enc setFragmentBuffer:GetBufferGPUResource(m_ubufs[i], b) offset:0 atIndex:i+2];
|
|
|
|
else
|
|
|
|
[enc setVertexBuffer:GetBufferGPUResource(m_ubufs[i], b) offset:0 atIndex:i+2];
|
|
|
|
}
|
2017-11-05 06:12:49 +00:00
|
|
|
for (size_t i=0 ; i<m_texs.size() ; ++i)
|
2017-03-14 07:02:53 +00:00
|
|
|
if (m_texs[i].tex)
|
|
|
|
[enc setFragmentTexture:GetTextureGPUResource(m_texs[i].tex, b, m_texs[i].idx, m_texs[i].depth) atIndex:i];
|
2015-11-08 00:36:38 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2015-11-09 02:24:45 +00:00
|
|
|
struct MetalCommandQueue : IGraphicsCommandQueue
|
2015-11-08 00:36:38 +00:00
|
|
|
{
|
2017-11-03 09:39:26 +00:00
|
|
|
Platform platform() const { return IGraphicsDataFactory::Platform::Metal; }
|
|
|
|
const char* platformName() const { return "Metal"; }
|
2015-11-09 02:24:45 +00:00
|
|
|
MetalContext* m_ctx;
|
|
|
|
IWindow* m_parentWindow;
|
2015-11-08 00:36:38 +00:00
|
|
|
IGraphicsContext* m_parent;
|
2016-01-11 22:26:40 +00:00
|
|
|
id<MTLCommandBuffer> m_cmdBuf;
|
|
|
|
id<MTLRenderCommandEncoder> m_enc;
|
2018-01-07 05:17:14 +00:00
|
|
|
id<MTLSamplerState> m_samplers[3];
|
2015-12-05 01:12:52 +00:00
|
|
|
bool m_running = true;
|
2016-02-16 19:41:16 +00:00
|
|
|
|
2017-11-03 09:39:26 +00:00
|
|
|
int m_fillBuf = 0;
|
|
|
|
int m_drawBuf = 0;
|
2016-02-16 19:41:16 +00:00
|
|
|
|
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-08 00:36:38 +00:00
|
|
|
{
|
2015-11-09 06:45:14 +00:00
|
|
|
@autoreleasepool
|
|
|
|
{
|
2016-01-11 22:26:40 +00:00
|
|
|
m_cmdBuf = [ctx->m_q commandBuffer];
|
2018-01-07 05:17:14 +00:00
|
|
|
|
|
|
|
MTLSamplerDescriptor* sampDesc = [MTLSamplerDescriptor new];
|
|
|
|
sampDesc.rAddressMode = MTLSamplerAddressModeRepeat;
|
|
|
|
sampDesc.sAddressMode = MTLSamplerAddressModeRepeat;
|
|
|
|
sampDesc.tAddressMode = MTLSamplerAddressModeRepeat;
|
|
|
|
sampDesc.minFilter = MTLSamplerMinMagFilterLinear;
|
|
|
|
sampDesc.magFilter = MTLSamplerMinMagFilterLinear;
|
|
|
|
sampDesc.mipFilter = MTLSamplerMipFilterLinear;
|
|
|
|
sampDesc.maxAnisotropy = ctx->m_anisotropy;
|
|
|
|
sampDesc.borderColor = MTLSamplerBorderColorOpaqueWhite;
|
|
|
|
m_samplers[0] = [ctx->m_dev newSamplerStateWithDescriptor:sampDesc];
|
|
|
|
|
|
|
|
sampDesc.rAddressMode = MTLSamplerAddressModeClampToBorderColor;
|
|
|
|
sampDesc.sAddressMode = MTLSamplerAddressModeClampToBorderColor;
|
|
|
|
sampDesc.tAddressMode = MTLSamplerAddressModeClampToBorderColor;
|
|
|
|
m_samplers[1] = [ctx->m_dev newSamplerStateWithDescriptor:sampDesc];
|
|
|
|
|
|
|
|
sampDesc.rAddressMode = MTLSamplerAddressModeClampToEdge;
|
|
|
|
sampDesc.sAddressMode = MTLSamplerAddressModeClampToEdge;
|
|
|
|
sampDesc.tAddressMode = MTLSamplerAddressModeClampToEdge;
|
|
|
|
m_samplers[2] = [ctx->m_dev newSamplerStateWithDescriptor:sampDesc];
|
2015-11-09 06:45:14 +00:00
|
|
|
}
|
2015-11-08 00:36:38 +00:00
|
|
|
}
|
2016-02-16 19:41:16 +00:00
|
|
|
|
2015-12-05 01:12:52 +00:00
|
|
|
void stopRenderer()
|
|
|
|
{
|
|
|
|
m_running = false;
|
2017-11-05 06:12:49 +00:00
|
|
|
if (m_inProgress && m_cmdBuf.status != MTLCommandBufferStatusNotEnqueued)
|
2016-01-11 22:26:40 +00:00
|
|
|
[m_cmdBuf waitUntilCompleted];
|
2015-12-05 01:12:52 +00:00
|
|
|
}
|
2016-02-16 19:41:16 +00:00
|
|
|
|
2015-12-05 01:12:52 +00:00
|
|
|
~MetalCommandQueue()
|
|
|
|
{
|
|
|
|
if (m_running) stopRenderer();
|
|
|
|
}
|
2016-02-16 19:41:16 +00:00
|
|
|
|
2015-11-09 02:24:45 +00:00
|
|
|
MetalShaderDataBinding* m_boundData = nullptr;
|
2016-03-24 08:05:19 +00:00
|
|
|
MTLPrimitiveType m_currentPrimitive = MTLPrimitiveTypeTriangle;
|
2017-11-03 09:39:26 +00:00
|
|
|
void setShaderDataBinding(const ObjToken<IShaderDataBinding>& binding)
|
2015-11-08 00:36:38 +00:00
|
|
|
{
|
2017-10-27 10:09:22 +00:00
|
|
|
@autoreleasepool
|
|
|
|
{
|
2017-11-05 06:12:49 +00:00
|
|
|
MetalShaderDataBinding* cbind = binding.cast<MetalShaderDataBinding>();
|
2017-10-27 10:09:22 +00:00
|
|
|
cbind->bind(m_enc, m_fillBuf);
|
|
|
|
m_boundData = cbind;
|
2017-11-05 06:12:49 +00:00
|
|
|
m_currentPrimitive = cbind->m_pipeline.cast<MetalShaderPipeline>()->m_drawPrim;
|
2018-01-07 05:17:14 +00:00
|
|
|
[m_enc setFragmentSamplerStates:m_samplers withRange:NSMakeRange(0, 3)];
|
2017-10-27 10:09:22 +00:00
|
|
|
}
|
2015-11-08 00:36:38 +00:00
|
|
|
}
|
2016-02-16 19:41:16 +00:00
|
|
|
|
2017-11-12 05:14:10 +00:00
|
|
|
ObjToken<ITextureR> m_boundTarget;
|
2017-11-03 09:39:26 +00:00
|
|
|
void _setRenderTarget(const ObjToken<ITextureR>& target, bool clearColor, bool clearDepth)
|
2015-11-08 00:36:38 +00:00
|
|
|
{
|
2015-11-18 23:55:25 +00:00
|
|
|
@autoreleasepool
|
|
|
|
{
|
2017-11-03 09:39:26 +00:00
|
|
|
MetalTextureR* ctarget = target.cast<MetalTextureR>();
|
2017-03-14 07:02:53 +00:00
|
|
|
[m_enc endEncoding];
|
2016-04-03 06:18:30 +00:00
|
|
|
if (clearColor && clearDepth)
|
|
|
|
m_enc = [m_cmdBuf renderCommandEncoderWithDescriptor:ctarget->m_clearBothPassDesc];
|
|
|
|
else if (clearColor)
|
|
|
|
m_enc = [m_cmdBuf renderCommandEncoderWithDescriptor:ctarget->m_clearColorPassDesc];
|
|
|
|
else if (clearDepth)
|
|
|
|
m_enc = [m_cmdBuf renderCommandEncoderWithDescriptor:ctarget->m_clearDepthPassDesc];
|
|
|
|
else
|
|
|
|
m_enc = [m_cmdBuf renderCommandEncoderWithDescriptor:ctarget->m_passDesc];
|
|
|
|
[m_enc setFrontFacingWinding:MTLWindingCounterClockwise];
|
2017-11-12 05:14:10 +00:00
|
|
|
if (ctarget == m_boundTarget.get())
|
2017-11-03 09:39:26 +00:00
|
|
|
{
|
|
|
|
if (m_boundVp.width || m_boundVp.height)
|
|
|
|
[m_enc setViewport:m_boundVp];
|
|
|
|
if (m_boundScissor.width || m_boundScissor.height)
|
|
|
|
[m_enc setScissorRect:m_boundScissor];
|
|
|
|
}
|
|
|
|
else
|
2017-11-12 05:14:10 +00:00
|
|
|
m_boundTarget = target;
|
2015-11-18 23:55:25 +00:00
|
|
|
}
|
2015-11-08 00:36:38 +00:00
|
|
|
}
|
2016-02-16 19:41:16 +00:00
|
|
|
|
2017-11-03 09:39:26 +00:00
|
|
|
void setRenderTarget(const ObjToken<ITextureR>& target)
|
2016-04-03 06:18:30 +00:00
|
|
|
{
|
|
|
|
_setRenderTarget(target, false, false);
|
|
|
|
}
|
2016-09-12 05:28:54 +00:00
|
|
|
|
2016-09-03 05:17:47 +00:00
|
|
|
MTLViewport m_boundVp = {};
|
2016-04-05 02:37:46 +00:00
|
|
|
void setViewport(const SWindowRect& rect, float znear, float zfar)
|
2015-11-08 00:36:38 +00:00
|
|
|
{
|
2016-09-03 05:17:47 +00:00
|
|
|
m_boundVp = MTLViewport{double(rect.location[0]), double(rect.location[1]),
|
2017-11-12 05:14:10 +00:00
|
|
|
double(rect.size[0]), double(rect.size[1]), 1.f - zfar, 1.f - znear};
|
2016-09-03 05:17:47 +00:00
|
|
|
[m_enc setViewport:m_boundVp];
|
2015-11-08 00:36:38 +00:00
|
|
|
}
|
2016-02-16 19:41:16 +00:00
|
|
|
|
2016-09-03 05:17:47 +00:00
|
|
|
MTLScissorRect m_boundScissor = {};
|
2015-11-28 04:07:53 +00:00
|
|
|
void setScissor(const SWindowRect& rect)
|
|
|
|
{
|
2015-12-31 20:20:38 +00:00
|
|
|
if (m_boundTarget)
|
|
|
|
{
|
2017-11-12 05:14:10 +00:00
|
|
|
MetalTextureR* ctarget = m_boundTarget.cast<MetalTextureR>();
|
|
|
|
SWindowRect intersectRect = rect.intersect(SWindowRect(0, 0, ctarget->m_width, ctarget->m_height));
|
2016-09-03 05:17:47 +00:00
|
|
|
m_boundScissor = MTLScissorRect{NSUInteger(intersectRect.location[0]),
|
2017-11-12 05:14:10 +00:00
|
|
|
NSUInteger(ctarget->m_height - intersectRect.location[1] - intersectRect.size[1]),
|
2016-02-27 01:38:13 +00:00
|
|
|
NSUInteger(intersectRect.size[0]), NSUInteger(intersectRect.size[1])};
|
2016-09-03 05:17:47 +00:00
|
|
|
[m_enc setScissorRect:m_boundScissor];
|
2015-12-31 20:20:38 +00:00
|
|
|
}
|
2015-11-28 04:07:53 +00:00
|
|
|
}
|
2016-02-16 19:41:16 +00:00
|
|
|
|
2015-11-09 02:24:45 +00:00
|
|
|
std::unordered_map<MetalTextureR*, std::pair<size_t, size_t>> m_texResizes;
|
2017-11-03 09:39:26 +00:00
|
|
|
void resizeRenderTexture(const ObjToken<ITextureR>& tex, size_t width, size_t height)
|
2015-11-08 00:36:38 +00:00
|
|
|
{
|
2017-11-03 09:39:26 +00:00
|
|
|
MetalTextureR* ctex = tex.cast<MetalTextureR>();
|
2015-11-08 00:36:38 +00:00
|
|
|
m_texResizes[ctex] = std::make_pair(width, height);
|
|
|
|
}
|
2015-12-21 00:40:52 +00:00
|
|
|
|
|
|
|
void schedulePostFrameHandler(std::function<void(void)>&& func)
|
|
|
|
{
|
|
|
|
func();
|
|
|
|
}
|
2016-02-16 19:41:16 +00:00
|
|
|
|
2015-11-18 23:55:25 +00:00
|
|
|
void flushBufferUpdates() {}
|
2016-02-16 19:41:16 +00:00
|
|
|
|
2017-11-03 09:39:26 +00:00
|
|
|
float m_clearColor[4] = {0.f,0.f,0.f,0.f};
|
2015-11-08 00:36:38 +00:00
|
|
|
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];
|
|
|
|
}
|
2016-02-16 19:41:16 +00:00
|
|
|
|
2015-11-08 00:36:38 +00:00
|
|
|
void clearTarget(bool render=true, bool depth=true)
|
|
|
|
{
|
|
|
|
if (!m_boundTarget)
|
|
|
|
return;
|
2016-04-03 06:18:30 +00:00
|
|
|
_setRenderTarget(m_boundTarget, render, depth);
|
2015-11-08 00:36:38 +00:00
|
|
|
}
|
2016-02-16 19:41:16 +00:00
|
|
|
|
2015-11-08 00:36:38 +00:00
|
|
|
void draw(size_t start, size_t count)
|
|
|
|
{
|
2018-01-05 03:00:58 +00:00
|
|
|
[m_enc drawPrimitives:m_currentPrimitive
|
|
|
|
vertexStart:start + m_boundData->m_baseVert
|
|
|
|
vertexCount:count];
|
2015-11-08 00:36:38 +00:00
|
|
|
}
|
2016-02-16 19:41:16 +00:00
|
|
|
|
2015-11-08 00:36:38 +00:00
|
|
|
void drawIndexed(size_t start, size_t count)
|
|
|
|
{
|
2016-03-24 08:05:19 +00:00
|
|
|
[m_enc drawIndexedPrimitives:m_currentPrimitive
|
2016-01-11 22:26:40 +00:00
|
|
|
indexCount:count
|
|
|
|
indexType:MTLIndexTypeUInt32
|
|
|
|
indexBuffer:GetBufferGPUResource(m_boundData->m_ibuf, m_fillBuf)
|
2018-01-05 03:00:58 +00:00
|
|
|
indexBufferOffset:start*4
|
|
|
|
instanceCount:1
|
|
|
|
baseVertex:m_boundData->m_baseVert
|
|
|
|
baseInstance:0];
|
2015-11-08 00:36:38 +00:00
|
|
|
}
|
2016-02-16 19:41:16 +00:00
|
|
|
|
2015-11-08 00:36:38 +00:00
|
|
|
void drawInstances(size_t start, size_t count, size_t instCount)
|
|
|
|
{
|
2016-03-24 08:05:19 +00:00
|
|
|
[m_enc drawPrimitives:m_currentPrimitive
|
2018-01-05 03:00:58 +00:00
|
|
|
vertexStart:start + m_boundData->m_baseVert
|
|
|
|
vertexCount:count
|
|
|
|
instanceCount:instCount
|
|
|
|
baseInstance:m_boundData->m_baseInst];
|
2015-11-08 00:36:38 +00:00
|
|
|
}
|
2016-02-16 19:41:16 +00:00
|
|
|
|
2015-11-08 00:36:38 +00:00
|
|
|
void drawInstancesIndexed(size_t start, size_t count, size_t instCount)
|
|
|
|
{
|
2016-03-24 08:05:19 +00:00
|
|
|
[m_enc drawIndexedPrimitives:m_currentPrimitive
|
2016-01-11 22:26:40 +00:00
|
|
|
indexCount:count
|
|
|
|
indexType:MTLIndexTypeUInt32
|
|
|
|
indexBuffer:GetBufferGPUResource(m_boundData->m_ibuf, m_fillBuf)
|
|
|
|
indexBufferOffset:start*4
|
2018-01-05 03:00:58 +00:00
|
|
|
instanceCount:instCount
|
|
|
|
baseVertex:m_boundData->m_baseVert
|
|
|
|
baseInstance:m_boundData->m_baseInst];
|
2015-11-08 00:36:38 +00:00
|
|
|
}
|
2016-02-16 19:41:16 +00:00
|
|
|
|
2017-11-05 06:12:49 +00:00
|
|
|
void resolveBindTexture(const ObjToken<ITextureR>& texture, const SWindowRect& rect, bool tlOrigin,
|
2018-01-06 06:49:54 +00:00
|
|
|
int bindIdx, bool color, bool depth, bool clearDepth)
|
2016-02-25 05:06:13 +00:00
|
|
|
{
|
2017-11-05 06:12:49 +00:00
|
|
|
MetalTextureR* tex = texture.cast<MetalTextureR>();
|
2017-03-14 07:02:53 +00:00
|
|
|
@autoreleasepool
|
2016-02-26 08:01:46 +00:00
|
|
|
{
|
|
|
|
[m_enc endEncoding];
|
2017-03-14 07:02:53 +00:00
|
|
|
if (color && tex->m_colorBindTex[bindIdx])
|
2018-01-07 05:17:14 +00:00
|
|
|
[[m_cmdBuf renderCommandEncoderWithDescriptor:tex->m_blitColor[bindIdx]] endEncoding];
|
2017-03-14 07:02:53 +00:00
|
|
|
if (depth && tex->m_depthBindTex[bindIdx])
|
2018-01-07 05:17:14 +00:00
|
|
|
[[m_cmdBuf renderCommandEncoderWithDescriptor:tex->m_blitDepth[bindIdx]] endEncoding];
|
2017-03-14 07:02:53 +00:00
|
|
|
|
2018-01-06 06:49:54 +00:00
|
|
|
m_enc = [m_cmdBuf renderCommandEncoderWithDescriptor:clearDepth ? tex->m_clearDepthPassDesc : tex->m_passDesc];
|
2017-03-14 07:02:53 +00:00
|
|
|
[m_enc setFrontFacingWinding:MTLWindingCounterClockwise];
|
|
|
|
|
|
|
|
if (m_boundVp.width || m_boundVp.height)
|
|
|
|
[m_enc setViewport:m_boundVp];
|
|
|
|
if (m_boundScissor.width || m_boundScissor.height)
|
|
|
|
[m_enc setScissorRect:m_boundScissor];
|
2016-02-26 08:01:46 +00:00
|
|
|
}
|
2016-02-25 05:06:13 +00:00
|
|
|
}
|
|
|
|
|
2017-11-05 06:12:49 +00:00
|
|
|
ObjToken<ITextureR> m_needsDisplay;
|
|
|
|
void resolveDisplay(const ObjToken<ITextureR>& source)
|
2015-11-08 00:36:38 +00:00
|
|
|
{
|
2017-11-05 06:12:49 +00:00
|
|
|
m_needsDisplay = source;
|
2015-11-09 02:24:45 +00:00
|
|
|
}
|
2016-02-16 19:41:16 +00:00
|
|
|
|
2015-11-09 02:24:45 +00:00
|
|
|
bool m_inProgress = false;
|
2018-01-07 05:17:14 +00:00
|
|
|
std::unordered_map<uintptr_t, MTLRenderPassDescriptor*> m_resolvePasses;
|
2015-11-08 00:36:38 +00:00
|
|
|
void execute()
|
|
|
|
{
|
2015-12-05 01:12:52 +00:00
|
|
|
if (!m_running)
|
|
|
|
return;
|
2016-02-16 19:41:16 +00:00
|
|
|
|
2017-11-19 23:44:46 +00:00
|
|
|
@autoreleasepool
|
2015-12-02 22:25:30 +00:00
|
|
|
{
|
2017-11-19 23:44:46 +00:00
|
|
|
/* Update dynamic data here */
|
|
|
|
MetalDataFactoryImpl* gfxF = static_cast<MetalDataFactoryImpl*>(m_parent->getDataFactory());
|
|
|
|
std::unique_lock<std::recursive_mutex> datalk(gfxF->m_dataMutex);
|
|
|
|
if (gfxF->m_dataHead)
|
2017-11-03 09:39:26 +00:00
|
|
|
{
|
2017-11-19 23:44:46 +00:00
|
|
|
for (BaseGraphicsData& d : *gfxF->m_dataHead)
|
|
|
|
{
|
|
|
|
if (d.m_DBufs)
|
|
|
|
for (IGraphicsBufferD& b : *d.m_DBufs)
|
|
|
|
static_cast<MetalGraphicsBufferD<BaseGraphicsData>&>(b).update(m_fillBuf);
|
|
|
|
if (d.m_DTexs)
|
|
|
|
for (ITextureD& t : *d.m_DTexs)
|
|
|
|
static_cast<MetalTextureD&>(t).update(m_fillBuf);
|
|
|
|
}
|
2017-11-03 09:39:26 +00:00
|
|
|
}
|
2017-11-19 23:44:46 +00:00
|
|
|
if (gfxF->m_poolHead)
|
2017-11-03 09:39:26 +00:00
|
|
|
{
|
2017-11-19 23:44:46 +00:00
|
|
|
for (BaseGraphicsPool& p : *gfxF->m_poolHead)
|
|
|
|
{
|
|
|
|
if (p.m_DBufs)
|
|
|
|
for (IGraphicsBufferD& b : *p.m_DBufs)
|
|
|
|
static_cast<MetalGraphicsBufferD<BaseGraphicsData>&>(b).update(m_fillBuf);
|
|
|
|
}
|
2017-11-03 09:39:26 +00:00
|
|
|
}
|
2017-11-19 23:44:46 +00:00
|
|
|
datalk.unlock();
|
2016-02-16 19:41:16 +00:00
|
|
|
|
2016-01-11 22:26:40 +00:00
|
|
|
[m_enc endEncoding];
|
|
|
|
m_enc = nullptr;
|
2016-02-16 19:41:16 +00:00
|
|
|
|
2015-11-09 06:45:14 +00:00
|
|
|
/* Abandon if in progress (renderer too slow) */
|
|
|
|
if (m_inProgress)
|
|
|
|
{
|
2016-01-11 22:26:40 +00:00
|
|
|
m_cmdBuf = [m_ctx->m_q commandBuffer];
|
2015-11-09 06:45:14 +00:00
|
|
|
return;
|
|
|
|
}
|
2016-02-16 19:41:16 +00:00
|
|
|
|
2015-11-09 06:45:14 +00:00
|
|
|
/* 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();
|
2016-01-11 22:26:40 +00:00
|
|
|
m_cmdBuf = [m_ctx->m_q commandBuffer];
|
2015-11-09 06:45:14 +00:00
|
|
|
return;
|
|
|
|
}
|
2016-02-16 19:41:16 +00:00
|
|
|
|
2015-12-31 20:20:38 +00:00
|
|
|
/* Wrap up and present if needed */
|
|
|
|
if (m_needsDisplay)
|
|
|
|
{
|
|
|
|
MetalContext::Window& w = m_ctx->m_windows[m_parentWindow];
|
|
|
|
{
|
2017-03-14 07:02:53 +00:00
|
|
|
std::unique_lock<std::mutex> lk(w.m_resizeLock);
|
|
|
|
if (w.m_needsResize)
|
2015-12-31 20:20:38 +00:00
|
|
|
{
|
2017-03-14 07:02:53 +00:00
|
|
|
w.m_metalLayer.drawableSize = w.m_size;
|
|
|
|
w.m_needsResize = NO;
|
2017-11-05 06:12:49 +00:00
|
|
|
m_needsDisplay.reset();
|
2017-03-14 07:02:53 +00:00
|
|
|
return;
|
2015-12-31 20:20:38 +00:00
|
|
|
}
|
2017-03-14 07:02:53 +00:00
|
|
|
}
|
|
|
|
id<CAMetalDrawable> drawable = [w.m_metalLayer nextDrawable];
|
|
|
|
if (drawable)
|
|
|
|
{
|
2017-11-05 06:12:49 +00:00
|
|
|
MetalTextureR* src = m_needsDisplay.cast<MetalTextureR>();
|
2017-03-14 07:02:53 +00:00
|
|
|
id<MTLTexture> dest = drawable.texture;
|
2018-01-07 05:17:14 +00:00
|
|
|
uintptr_t key = uintptr_t(src->m_colorTex) ^ uintptr_t(dest);
|
|
|
|
auto passSearch = m_resolvePasses.find(key);
|
|
|
|
if (passSearch == m_resolvePasses.end())
|
|
|
|
{
|
|
|
|
MTLRenderPassDescriptor* desc = [MTLRenderPassDescriptor renderPassDescriptor];
|
|
|
|
desc.colorAttachments[0].texture = src->m_colorTex;
|
|
|
|
desc.colorAttachments[0].loadAction = MTLLoadActionLoad;
|
|
|
|
desc.colorAttachments[0].storeAction = MTLStoreActionMultisampleResolve;
|
|
|
|
desc.colorAttachments[0].resolveTexture = dest;
|
|
|
|
passSearch = m_resolvePasses.insert(std::make_pair(key, desc)).first;
|
|
|
|
}
|
2017-11-05 06:12:49 +00:00
|
|
|
if (src->m_colorTex.width == dest.width &&
|
|
|
|
src->m_colorTex.height == dest.height)
|
2015-12-31 20:20:38 +00:00
|
|
|
{
|
2018-01-07 05:17:14 +00:00
|
|
|
[[m_cmdBuf renderCommandEncoderWithDescriptor:passSearch->second] endEncoding];
|
2017-03-14 07:02:53 +00:00
|
|
|
[m_cmdBuf presentDrawable:drawable];
|
2015-12-31 20:20:38 +00:00
|
|
|
}
|
|
|
|
}
|
2017-11-05 06:12:49 +00:00
|
|
|
m_needsDisplay.reset();
|
2015-12-31 20:20:38 +00:00
|
|
|
}
|
2016-02-16 19:41:16 +00:00
|
|
|
|
2015-11-09 06:45:14 +00:00
|
|
|
m_drawBuf = m_fillBuf;
|
2015-12-02 22:25:30 +00:00
|
|
|
m_fillBuf ^= 1;
|
2016-02-16 19:41:16 +00:00
|
|
|
|
2016-01-11 22:26:40 +00:00
|
|
|
[m_cmdBuf addCompletedHandler:^(id<MTLCommandBuffer> buf) {m_inProgress = false;}];
|
2015-11-09 06:45:14 +00:00
|
|
|
m_inProgress = true;
|
2016-01-11 22:26:40 +00:00
|
|
|
[m_cmdBuf commit];
|
|
|
|
m_cmdBuf = [m_ctx->m_q commandBuffer];
|
2015-11-08 00:36:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
2016-02-16 19:41:16 +00:00
|
|
|
|
2017-11-05 06:12:49 +00:00
|
|
|
MetalDataFactory::Context::Context(MetalDataFactory& parent)
|
|
|
|
: m_parent(parent), m_data(new BaseGraphicsData(static_cast<MetalDataFactoryImpl&>(parent))) {}
|
2016-02-16 19:41:16 +00:00
|
|
|
|
2017-11-05 06:12:49 +00:00
|
|
|
MetalDataFactory::Context::~Context() {}
|
2016-02-16 19:41:16 +00:00
|
|
|
|
2017-11-05 06:12:49 +00:00
|
|
|
ObjToken<IGraphicsBufferS>
|
|
|
|
MetalDataFactory::Context::newStaticBuffer(BufferUse use, const void* data, size_t stride, size_t count)
|
2015-11-08 00:36:38 +00:00
|
|
|
{
|
2017-10-27 10:09:22 +00:00
|
|
|
@autoreleasepool
|
|
|
|
{
|
|
|
|
MetalDataFactoryImpl& factory = static_cast<MetalDataFactoryImpl&>(m_parent);
|
2017-11-05 06:12:49 +00:00
|
|
|
return {new MetalGraphicsBufferS(m_data, use, factory.m_ctx, data, stride, count)};
|
2017-10-27 10:09:22 +00:00
|
|
|
}
|
2015-11-08 00:36:38 +00:00
|
|
|
}
|
2017-11-05 06:12:49 +00:00
|
|
|
ObjToken<IGraphicsBufferD>
|
|
|
|
MetalDataFactory::Context::newDynamicBuffer(BufferUse use, size_t stride, size_t count)
|
2015-11-08 00:36:38 +00:00
|
|
|
{
|
2017-10-27 10:09:22 +00:00
|
|
|
@autoreleasepool
|
|
|
|
{
|
|
|
|
MetalDataFactoryImpl& factory = static_cast<MetalDataFactoryImpl&>(m_parent);
|
|
|
|
MetalCommandQueue* q = static_cast<MetalCommandQueue*>(factory.m_parent->getCommandQueue());
|
2017-11-05 06:12:49 +00:00
|
|
|
return {new MetalGraphicsBufferD<BaseGraphicsData>(m_data, q, use, factory.m_ctx, stride, count)};
|
2017-10-27 10:09:22 +00:00
|
|
|
}
|
2015-11-08 00:36:38 +00:00
|
|
|
}
|
|
|
|
|
2017-11-05 06:12:49 +00:00
|
|
|
ObjToken<ITextureS>
|
|
|
|
MetalDataFactory::Context::newStaticTexture(size_t width, size_t height, size_t mips, TextureFormat fmt,
|
|
|
|
TextureClampMode clampMode, const void* data, size_t sz)
|
2015-11-08 00:36:38 +00:00
|
|
|
{
|
2017-10-27 10:09:22 +00:00
|
|
|
@autoreleasepool
|
|
|
|
{
|
|
|
|
MetalDataFactoryImpl& factory = static_cast<MetalDataFactoryImpl&>(m_parent);
|
2017-11-05 06:12:49 +00:00
|
|
|
return {new MetalTextureS(m_data, factory.m_ctx, width, height, mips, fmt, data, sz)};
|
2017-10-27 10:09:22 +00:00
|
|
|
}
|
2015-11-08 00:36:38 +00:00
|
|
|
}
|
2017-11-05 06:12:49 +00:00
|
|
|
ObjToken<ITextureSA>
|
|
|
|
MetalDataFactory::Context::newStaticArrayTexture(size_t width, size_t height, size_t layers, size_t mips,
|
|
|
|
TextureFormat fmt, TextureClampMode clampMode,
|
|
|
|
const void* data, size_t sz)
|
2015-11-08 00:36:38 +00:00
|
|
|
{
|
2017-10-27 10:09:22 +00:00
|
|
|
@autoreleasepool
|
|
|
|
{
|
|
|
|
MetalDataFactoryImpl& factory = static_cast<MetalDataFactoryImpl&>(m_parent);
|
2017-11-05 06:12:49 +00:00
|
|
|
return {new MetalTextureSA(m_data, factory.m_ctx, width, height, layers, mips, fmt, data, sz)};
|
2017-10-27 10:09:22 +00:00
|
|
|
}
|
2015-11-28 04:07:53 +00:00
|
|
|
}
|
2017-11-05 06:12:49 +00:00
|
|
|
ObjToken<ITextureD>
|
|
|
|
MetalDataFactory::Context::newDynamicTexture(size_t width, size_t height, TextureFormat fmt,
|
|
|
|
TextureClampMode clampMode)
|
2015-11-08 00:36:38 +00:00
|
|
|
{
|
2017-10-27 10:09:22 +00:00
|
|
|
@autoreleasepool
|
|
|
|
{
|
|
|
|
MetalDataFactoryImpl& factory = static_cast<MetalDataFactoryImpl&>(m_parent);
|
|
|
|
MetalCommandQueue* q = static_cast<MetalCommandQueue*>(factory.m_parent->getCommandQueue());
|
2017-11-05 06:12:49 +00:00
|
|
|
return {new MetalTextureD(m_data, q, factory.m_ctx, width, height, fmt)};
|
2017-10-27 10:09:22 +00:00
|
|
|
}
|
2015-11-08 00:36:38 +00:00
|
|
|
}
|
2017-11-05 06:12:49 +00:00
|
|
|
ObjToken<ITextureR>
|
|
|
|
MetalDataFactory::Context::newRenderTexture(size_t width, size_t height, TextureClampMode clampMode,
|
|
|
|
size_t colorBindCount, size_t depthBindCount)
|
2015-11-08 00:36:38 +00:00
|
|
|
{
|
2017-10-27 10:09:22 +00:00
|
|
|
@autoreleasepool
|
|
|
|
{
|
|
|
|
MetalDataFactoryImpl& factory = static_cast<MetalDataFactoryImpl&>(m_parent);
|
2018-01-07 05:17:14 +00:00
|
|
|
return {new MetalTextureR(m_data, factory.m_ctx, width, height, factory.m_ctx->m_sampleCount,
|
2017-11-05 06:12:49 +00:00
|
|
|
colorBindCount, depthBindCount)};
|
2017-10-27 10:09:22 +00:00
|
|
|
}
|
2015-11-08 00:36:38 +00:00
|
|
|
}
|
|
|
|
|
2017-11-05 06:12:49 +00:00
|
|
|
ObjToken<IVertexFormat>
|
|
|
|
MetalDataFactory::Context::newVertexFormat(size_t elementCount, const VertexElementDescriptor* elements,
|
|
|
|
size_t baseVert, size_t baseInst)
|
2015-11-08 00:36:38 +00:00
|
|
|
{
|
2017-10-27 10:09:22 +00:00
|
|
|
@autoreleasepool
|
|
|
|
{
|
2017-11-05 06:12:49 +00:00
|
|
|
return {new struct MetalVertexFormat(m_data, elementCount, elements)};
|
2017-10-27 10:09:22 +00:00
|
|
|
}
|
2015-11-08 00:36:38 +00:00
|
|
|
}
|
|
|
|
|
2017-11-05 06:12:49 +00:00
|
|
|
ObjToken<IShaderPipeline>
|
|
|
|
MetalDataFactory::Context::newShaderPipeline(const char* vertSource, const char* fragSource,
|
|
|
|
std::vector<uint8_t>* vertBlobOut,
|
|
|
|
std::vector<uint8_t>* fragBlobOut,
|
2018-01-07 05:17:14 +00:00
|
|
|
const ObjToken<IVertexFormat>& vtxFmt,
|
2017-11-05 06:12:49 +00:00
|
|
|
BlendFactor srcFac, BlendFactor dstFac, Primitive prim,
|
|
|
|
ZTest depthTest, bool depthWrite, bool colorWrite,
|
|
|
|
bool alphaWrite, CullMode culling)
|
2015-11-08 00:36:38 +00:00
|
|
|
{
|
2017-03-20 05:08:19 +00:00
|
|
|
@autoreleasepool
|
2017-01-30 04:14:58 +00:00
|
|
|
{
|
2017-03-20 05:08:19 +00:00
|
|
|
MetalDataFactoryImpl& factory = static_cast<MetalDataFactoryImpl&>(m_parent);
|
|
|
|
MTLCompileOptions* compOpts = [MTLCompileOptions new];
|
2018-01-07 05:17:14 +00:00
|
|
|
compOpts.languageVersion = MTLLanguageVersion1_1;
|
2017-03-20 05:08:19 +00:00
|
|
|
NSError* err = nullptr;
|
|
|
|
|
|
|
|
XXH64_state_t hashState;
|
2017-11-05 06:12:49 +00:00
|
|
|
uint64_t srcHashes[2] = {};
|
|
|
|
uint64_t binHashes[2] = {};
|
2017-03-20 05:08:19 +00:00
|
|
|
XXH64_reset(&hashState, 0);
|
2017-11-05 06:12:49 +00:00
|
|
|
if (vertSource)
|
|
|
|
{
|
|
|
|
XXH64_update(&hashState, vertSource, strlen(vertSource));
|
|
|
|
srcHashes[0] = XXH64_digest(&hashState);
|
|
|
|
auto binSearch = factory.m_sourceToBinary.find(srcHashes[0]);
|
|
|
|
if (binSearch != factory.m_sourceToBinary.cend())
|
|
|
|
binHashes[0] = binSearch->second;
|
|
|
|
}
|
|
|
|
else if (vertBlobOut && !vertBlobOut->empty())
|
|
|
|
{
|
|
|
|
XXH64_update(&hashState, vertBlobOut->data(), vertBlobOut->size());
|
|
|
|
binHashes[0] = XXH64_digest(&hashState);
|
|
|
|
}
|
2017-03-20 05:08:19 +00:00
|
|
|
XXH64_reset(&hashState, 0);
|
2017-11-05 06:12:49 +00:00
|
|
|
if (fragSource)
|
|
|
|
{
|
|
|
|
XXH64_update(&hashState, fragSource, strlen(fragSource));
|
|
|
|
srcHashes[1] = XXH64_digest(&hashState);
|
|
|
|
auto binSearch = factory.m_sourceToBinary.find(srcHashes[1]);
|
|
|
|
if (binSearch != factory.m_sourceToBinary.cend())
|
|
|
|
binHashes[1] = binSearch->second;
|
|
|
|
}
|
|
|
|
else if (fragBlobOut && !fragBlobOut->empty())
|
|
|
|
{
|
|
|
|
XXH64_update(&hashState, fragBlobOut->data(), fragBlobOut->size());
|
|
|
|
binHashes[1] = XXH64_digest(&hashState);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (vertBlobOut && vertBlobOut->empty())
|
|
|
|
binHashes[0] = factory.CompileLib(*vertBlobOut, vertSource, srcHashes[0]);
|
|
|
|
|
|
|
|
if (fragBlobOut && fragBlobOut->empty())
|
|
|
|
binHashes[1] = factory.CompileLib(*fragBlobOut, fragSource, srcHashes[1]);
|
2017-03-20 05:08:19 +00:00
|
|
|
|
|
|
|
MetalShareableShader::Token vertShader;
|
|
|
|
MetalShareableShader::Token fragShader;
|
2017-11-05 06:12:49 +00:00
|
|
|
auto vertFind = binHashes[0] ? factory.m_sharedShaders.find(binHashes[0]) :
|
|
|
|
factory.m_sharedShaders.end();
|
2017-03-20 05:08:19 +00:00
|
|
|
if (vertFind != factory.m_sharedShaders.end())
|
2017-03-05 07:54:58 +00:00
|
|
|
{
|
2017-03-20 05:08:19 +00:00
|
|
|
vertShader = vertFind->second->lock();
|
2017-03-05 07:54:58 +00:00
|
|
|
}
|
2017-03-20 05:08:19 +00:00
|
|
|
else
|
|
|
|
{
|
2017-11-05 06:12:49 +00:00
|
|
|
id<MTLLibrary> vertShaderLib;
|
|
|
|
if (vertBlobOut && !vertBlobOut->empty())
|
|
|
|
{
|
|
|
|
if ((*vertBlobOut)[0] == 1)
|
|
|
|
{
|
|
|
|
dispatch_data_t vertData = dispatch_data_create(vertBlobOut->data() + 1, vertBlobOut->size() - 1, nullptr, nullptr);
|
|
|
|
vertShaderLib = [factory.m_ctx->m_dev newLibraryWithData:vertData error:&err];
|
|
|
|
if (!vertShaderLib)
|
|
|
|
Log.report(logvisor::Fatal, "error loading vert library: %s", [[err localizedDescription] UTF8String]);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
factory.CompileLib(vertShaderLib, (char*)vertBlobOut->data() + 1, 0, compOpts, &err);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
binHashes[0] = factory.CompileLib(vertShaderLib, vertSource, srcHashes[0], compOpts, &err);
|
|
|
|
|
2017-03-20 05:08:19 +00:00
|
|
|
if (!vertShaderLib)
|
|
|
|
{
|
|
|
|
printf("%s\n", vertSource);
|
|
|
|
Log.report(logvisor::Fatal, "error compiling vert shader: %s", [[err localizedDescription] UTF8String]);
|
|
|
|
}
|
|
|
|
id<MTLFunction> vertFunc = [vertShaderLib newFunctionWithName:@"vmain"];
|
2016-02-16 19:41:16 +00:00
|
|
|
|
2017-03-20 05:08:19 +00:00
|
|
|
auto it =
|
2017-11-05 06:12:49 +00:00
|
|
|
factory.m_sharedShaders.emplace(std::make_pair(binHashes[0],
|
|
|
|
std::make_unique<MetalShareableShader>(factory, srcHashes[0], binHashes[0], vertFunc))).first;
|
2017-03-20 05:08:19 +00:00
|
|
|
vertShader = it->second->lock();
|
|
|
|
}
|
2017-11-05 06:12:49 +00:00
|
|
|
auto fragFind = binHashes[1] ? factory.m_sharedShaders.find(binHashes[1]) :
|
|
|
|
factory.m_sharedShaders.end();
|
2017-03-20 05:08:19 +00:00
|
|
|
if (fragFind != factory.m_sharedShaders.end())
|
|
|
|
{
|
|
|
|
fragShader = fragFind->second->lock();
|
|
|
|
}
|
|
|
|
else
|
2017-03-05 07:54:58 +00:00
|
|
|
{
|
2017-11-05 06:12:49 +00:00
|
|
|
id<MTLLibrary> fragShaderLib;
|
|
|
|
if (fragBlobOut && !fragBlobOut->empty())
|
|
|
|
{
|
|
|
|
if ((*fragBlobOut)[0] == 1)
|
|
|
|
{
|
|
|
|
dispatch_data_t fragData = dispatch_data_create(fragBlobOut->data() + 1, fragBlobOut->size() - 1, nullptr, nullptr);
|
|
|
|
fragShaderLib = [factory.m_ctx->m_dev newLibraryWithData:fragData error:&err];
|
|
|
|
if (!fragShaderLib)
|
|
|
|
Log.report(logvisor::Fatal, "error loading frag library: %s", [[err localizedDescription] UTF8String]);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
factory.CompileLib(fragShaderLib, (char*)fragBlobOut->data() + 1, 0, compOpts, &err);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
binHashes[1] = factory.CompileLib(fragShaderLib, fragSource, srcHashes[1], compOpts, &err);
|
|
|
|
|
2017-03-20 05:08:19 +00:00
|
|
|
if (!fragShaderLib)
|
|
|
|
{
|
|
|
|
printf("%s\n", fragSource);
|
|
|
|
Log.report(logvisor::Fatal, "error compiling frag shader: %s", [[err localizedDescription] UTF8String]);
|
|
|
|
}
|
|
|
|
id<MTLFunction> fragFunc = [fragShaderLib newFunctionWithName:@"fmain"];
|
|
|
|
|
|
|
|
auto it =
|
2017-11-05 06:12:49 +00:00
|
|
|
factory.m_sharedShaders.emplace(std::make_pair(binHashes[1],
|
|
|
|
std::make_unique<MetalShareableShader>(factory, srcHashes[1], binHashes[1], fragFunc))).first;
|
2017-03-20 05:08:19 +00:00
|
|
|
fragShader = it->second->lock();
|
2017-03-05 07:54:58 +00:00
|
|
|
}
|
|
|
|
|
2017-11-05 06:12:49 +00:00
|
|
|
return {new MetalShaderPipeline(m_data, factory.m_ctx, std::move(vertShader), std::move(fragShader),
|
2018-01-07 05:17:14 +00:00
|
|
|
vtxFmt, factory.m_ctx->m_sampleCount, srcFac, dstFac, prim, depthTest, depthWrite,
|
2017-11-05 06:12:49 +00:00
|
|
|
colorWrite, alphaWrite, culling)};
|
2017-01-30 04:14:58 +00:00
|
|
|
}
|
2015-11-08 00:36:38 +00:00
|
|
|
}
|
|
|
|
|
2017-11-03 09:39:26 +00:00
|
|
|
ObjToken<IShaderDataBinding>
|
|
|
|
MetalDataFactory::Context::newShaderDataBinding(const ObjToken<IShaderPipeline>& pipeline,
|
|
|
|
const ObjToken<IVertexFormat>& vtxFormat,
|
|
|
|
const ObjToken<IGraphicsBuffer>& vbo,
|
|
|
|
const ObjToken<IGraphicsBuffer>& instVbo,
|
|
|
|
const ObjToken<IGraphicsBuffer>& ibo,
|
|
|
|
size_t ubufCount, const ObjToken<IGraphicsBuffer>* ubufs, const PipelineStage* ubufStages,
|
2016-03-30 21:07:12 +00:00
|
|
|
const size_t* ubufOffs, const size_t* ubufSizes,
|
2017-11-03 09:39:26 +00:00
|
|
|
size_t texCount, const ObjToken<ITexture>* texs,
|
2017-03-14 07:02:53 +00:00
|
|
|
const int* texBindIdxs, const bool* depthBind,
|
|
|
|
size_t baseVert, size_t baseInst)
|
2015-11-08 00:36:38 +00:00
|
|
|
{
|
2017-10-27 10:09:22 +00:00
|
|
|
@autoreleasepool
|
|
|
|
{
|
|
|
|
MetalDataFactoryImpl& factory = static_cast<MetalDataFactoryImpl&>(m_parent);
|
2017-11-05 06:12:49 +00:00
|
|
|
return {new MetalShaderDataBinding(m_data,
|
|
|
|
factory.m_ctx, pipeline, vbo, instVbo, ibo,
|
|
|
|
ubufCount, ubufs, ubufStages, ubufOffs,
|
|
|
|
ubufSizes, texCount, texs, texBindIdxs,
|
|
|
|
depthBind, baseVert, baseInst)};
|
2017-10-27 10:09:22 +00:00
|
|
|
}
|
2015-11-08 00:36:38 +00:00
|
|
|
}
|
|
|
|
|
2017-11-03 09:39:26 +00:00
|
|
|
void MetalDataFactoryImpl::commitTransaction(const FactoryCommitFunc& trans)
|
2015-11-08 00:36:38 +00:00
|
|
|
{
|
2016-03-30 21:07:12 +00:00
|
|
|
MetalDataFactory::Context ctx(*this);
|
2017-11-05 06:12:49 +00:00
|
|
|
trans(ctx);
|
2015-11-08 00:36:38 +00:00
|
|
|
}
|
2016-12-10 02:31:50 +00:00
|
|
|
|
2017-11-03 09:39:26 +00:00
|
|
|
ObjToken<IGraphicsBufferD> MetalDataFactoryImpl::newPoolBuffer(BufferUse use, size_t stride, size_t count)
|
2016-12-10 02:31:50 +00:00
|
|
|
{
|
2017-11-05 06:12:49 +00:00
|
|
|
ObjToken<BaseGraphicsPool> pool(new BaseGraphicsPool(*this));
|
2016-12-10 02:31:50 +00:00
|
|
|
MetalCommandQueue* q = static_cast<MetalCommandQueue*>(m_parent->getCommandQueue());
|
2017-11-05 06:12:49 +00:00
|
|
|
return {new MetalGraphicsBufferD<BaseGraphicsPool>(pool, q, use, m_ctx, stride, count)};
|
2016-12-11 20:20:29 +00:00
|
|
|
}
|
|
|
|
|
2015-11-09 02:24:45 +00:00
|
|
|
IGraphicsCommandQueue* _NewMetalCommandQueue(MetalContext* ctx, IWindow* parentWindow,
|
2015-11-08 00:36:38 +00:00
|
|
|
IGraphicsContext* parent)
|
|
|
|
{
|
2015-11-09 02:24:45 +00:00
|
|
|
return new struct MetalCommandQueue(ctx, parentWindow, parent);
|
2015-11-08 00:36:38 +00:00
|
|
|
}
|
2016-02-16 19:41:16 +00:00
|
|
|
|
2018-01-07 05:17:14 +00:00
|
|
|
IGraphicsDataFactory* _NewMetalDataFactory(IGraphicsContext* parent, MetalContext* ctx)
|
2017-03-05 07:54:58 +00:00
|
|
|
{
|
2018-01-07 05:17:14 +00:00
|
|
|
return new class MetalDataFactoryImpl(parent, ctx);
|
2017-03-05 07:54:58 +00:00
|
|
|
}
|
|
|
|
|
2015-11-08 00:36:38 +00:00
|
|
|
}
|
2015-11-16 22:03:46 +00:00
|
|
|
|
|
|
|
#endif
|