2016-03-04 23:02:44 +00:00
|
|
|
#include "hecl/Backend/Metal.hpp"
|
2016-02-23 02:33:29 +00:00
|
|
|
#if BOO_HAS_METAL
|
2016-03-04 23:02:44 +00:00
|
|
|
#include "hecl/Runtime.hpp"
|
|
|
|
#include <athena/MemoryReader.hpp>
|
|
|
|
#include <athena/MemoryWriter.hpp>
|
2015-11-18 23:56:45 +00:00
|
|
|
#include <boo/graphicsdev/Metal.hpp>
|
|
|
|
|
2016-03-04 23:02:44 +00:00
|
|
|
static logvisor::Module Log("hecl::Backend::Metal");
|
2015-11-18 23:56:45 +00:00
|
|
|
|
2016-03-04 23:02:44 +00:00
|
|
|
namespace hecl
|
2015-11-18 23:56:45 +00:00
|
|
|
{
|
|
|
|
namespace Backend
|
|
|
|
{
|
|
|
|
|
|
|
|
std::string Metal::EmitTexGenSource2(TexGenSrc src, int uvIdx) const
|
|
|
|
{
|
|
|
|
switch (src)
|
|
|
|
{
|
2015-11-21 02:16:54 +00:00
|
|
|
case TexGenSrc::Position:
|
2015-11-18 23:56:45 +00:00
|
|
|
return "v.posIn.xy\n";
|
2015-11-21 02:16:54 +00:00
|
|
|
case TexGenSrc::Normal:
|
2015-11-18 23:56:45 +00:00
|
|
|
return "v.normIn.xy\n";
|
2015-11-21 02:16:54 +00:00
|
|
|
case TexGenSrc::UV:
|
2016-03-04 23:02:44 +00:00
|
|
|
return hecl::Format("v.uvIn%u", uvIdx);
|
2015-11-18 23:56:45 +00:00
|
|
|
default: break;
|
|
|
|
}
|
|
|
|
return std::string();
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string Metal::EmitTexGenSource4(TexGenSrc src, int uvIdx) const
|
|
|
|
{
|
|
|
|
switch (src)
|
|
|
|
{
|
2015-11-21 02:16:54 +00:00
|
|
|
case TexGenSrc::Position:
|
2015-11-18 23:56:45 +00:00
|
|
|
return "float4(v.posIn, 1.0)\n";
|
2015-11-21 02:16:54 +00:00
|
|
|
case TexGenSrc::Normal:
|
2015-11-18 23:56:45 +00:00
|
|
|
return "float4(v.normIn, 1.0)\n";
|
2015-11-21 02:16:54 +00:00
|
|
|
case TexGenSrc::UV:
|
2016-03-04 23:02:44 +00:00
|
|
|
return hecl::Format("float4(v.uvIn%u, 0.0, 1.0)", uvIdx);
|
2015-11-18 23:56:45 +00:00
|
|
|
default: break;
|
|
|
|
}
|
|
|
|
return std::string();
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string Metal::GenerateVertInStruct(unsigned col, unsigned uv, unsigned w) const
|
|
|
|
{
|
|
|
|
std::string retval =
|
|
|
|
"struct VertData\n"
|
|
|
|
"{\n"
|
|
|
|
" float3 posIn [[ attribute(0) ]];\n"
|
|
|
|
" float3 normIn [[ attribute(1) ]];\n";
|
2016-04-03 06:19:03 +00:00
|
|
|
|
2015-11-18 23:56:45 +00:00
|
|
|
unsigned idx = 2;
|
|
|
|
if (col)
|
|
|
|
{
|
|
|
|
for (unsigned i=0 ; i<col ; ++i, ++idx)
|
2016-03-04 23:02:44 +00:00
|
|
|
retval += hecl::Format(" float4 colIn%u [[ attribute(%u) ]];\n", i, idx);
|
2015-11-18 23:56:45 +00:00
|
|
|
}
|
2016-04-03 06:19:03 +00:00
|
|
|
|
2015-11-18 23:56:45 +00:00
|
|
|
if (uv)
|
|
|
|
{
|
|
|
|
for (unsigned i=0 ; i<uv ; ++i, ++idx)
|
2016-03-04 23:02:44 +00:00
|
|
|
retval += hecl::Format(" float2 uvIn%u [[ attribute(%u) ]];\n", i, idx);
|
2015-11-18 23:56:45 +00:00
|
|
|
}
|
2016-04-03 06:19:03 +00:00
|
|
|
|
2015-11-18 23:56:45 +00:00
|
|
|
if (w)
|
|
|
|
{
|
|
|
|
for (unsigned i=0 ; i<w ; ++i, ++idx)
|
2016-03-04 23:02:44 +00:00
|
|
|
retval += hecl::Format(" float4 weightIn%u [[ attribute(%u) ]];\n", i, idx);
|
2015-11-18 23:56:45 +00:00
|
|
|
}
|
2016-04-03 06:19:03 +00:00
|
|
|
|
2015-11-18 23:56:45 +00:00
|
|
|
return retval + "};\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string Metal::GenerateVertToFragStruct() const
|
|
|
|
{
|
|
|
|
std::string retval =
|
|
|
|
"struct VertToFrag\n"
|
|
|
|
"{\n"
|
|
|
|
" float4 mvpPos [[ position ]];\n"
|
|
|
|
" float4 mvPos;\n"
|
|
|
|
" float4 mvNorm;\n";
|
2016-04-03 06:19:03 +00:00
|
|
|
|
2015-11-18 23:56:45 +00:00
|
|
|
if (m_tcgs.size())
|
|
|
|
{
|
|
|
|
for (size_t i=0 ; i<m_tcgs.size() ; ++i)
|
2016-03-04 23:02:44 +00:00
|
|
|
retval += hecl::Format(" float2 tcgs%" PRISize ";\n", i);
|
2015-11-18 23:56:45 +00:00
|
|
|
}
|
2016-04-03 06:19:03 +00:00
|
|
|
|
2015-11-18 23:56:45 +00:00
|
|
|
return retval + "};\n";
|
|
|
|
}
|
|
|
|
|
2016-04-04 06:15:07 +00:00
|
|
|
std::string Metal::GenerateVertUniformStruct(unsigned skinSlots) const
|
2015-11-18 23:56:45 +00:00
|
|
|
{
|
|
|
|
if (skinSlots == 0)
|
|
|
|
skinSlots = 1;
|
2016-03-04 23:02:44 +00:00
|
|
|
std::string retval = hecl::Format("struct HECLVertUniform\n"
|
2015-11-18 23:56:45 +00:00
|
|
|
"{\n"
|
|
|
|
" float4x4 mv[%u];\n"
|
|
|
|
" float4x4 mvInv[%u];\n"
|
2016-04-04 06:15:07 +00:00
|
|
|
" float4x4 proj;\n"
|
2016-07-19 20:33:04 +00:00
|
|
|
"};\n"
|
|
|
|
"struct TexMtxs {float4x4 mtx; float4x4 postMtx;};\n",
|
2015-11-18 23:56:45 +00:00
|
|
|
skinSlots, skinSlots);
|
2016-04-04 06:15:07 +00:00
|
|
|
return retval;
|
2015-11-18 23:56:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void Metal::reset(const IR& ir, Diagnostics& diag)
|
|
|
|
{
|
|
|
|
/* Common programmable interpretation */
|
|
|
|
ProgrammableCommon::reset(ir, diag, "Metal");
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string Metal::makeVert(unsigned col, unsigned uv, unsigned w,
|
|
|
|
unsigned s, unsigned tm) const
|
|
|
|
{
|
2016-04-04 06:15:07 +00:00
|
|
|
std::string tmStr;
|
|
|
|
if (tm)
|
2016-07-19 20:33:04 +00:00
|
|
|
tmStr = hecl::Format(",\nconstant TexMtxs* texMtxs [[ buffer(3) ]]");
|
2015-11-18 23:56:45 +00:00
|
|
|
std::string retval = "#include <metal_stdlib>\nusing namespace metal;\n" +
|
|
|
|
GenerateVertInStruct(col, uv, w) + "\n" +
|
|
|
|
GenerateVertToFragStruct() + "\n" +
|
2016-04-04 06:15:07 +00:00
|
|
|
GenerateVertUniformStruct(s) +
|
|
|
|
"\nvertex VertToFrag vmain(VertData v [[ stage_in ]],\n"
|
|
|
|
" constant HECLVertUniform& vu [[ buffer(2) ]]" + tmStr + ")\n"
|
|
|
|
"{\n"
|
2015-11-18 23:56:45 +00:00
|
|
|
" VertToFrag vtf;\n";
|
2016-04-03 06:19:03 +00:00
|
|
|
|
2015-11-18 23:56:45 +00:00
|
|
|
if (s)
|
|
|
|
{
|
|
|
|
/* skinned */
|
|
|
|
retval += " float4 posAccum = float4(0.0,0.0,0.0,0.0);\n"
|
|
|
|
" float4 normAccum = float4(0.0,0.0,0.0,0.0);\n";
|
|
|
|
for (size_t i=0 ; i<s ; ++i)
|
2016-03-04 23:02:44 +00:00
|
|
|
retval += hecl::Format(" posAccum += (vu.mv[%" PRISize "] * float4(v.posIn, 1.0)) * v.weightIn%" PRISize "[%" PRISize "];\n"
|
2015-11-18 23:56:45 +00:00
|
|
|
" normAccum += (vu.mvInv[%" PRISize "] * float4(v.normIn, 1.0)) * v.weightIn%" PRISize "[%" PRISize "];\n",
|
|
|
|
i, i/4, i%4, i, i/4, i%4);
|
|
|
|
retval += " posAccum[3] = 1.0;\n"
|
|
|
|
" vtf.mvPos = posAccum;\n"
|
|
|
|
" vtf.mvNorm = float4(normalize(normAccum.xyz), 0.0);\n"
|
|
|
|
" vtf.mvpPos = vu.proj * posAccum;\n";
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* non-skinned */
|
|
|
|
retval += " vtf.mvPos = vu.mv[0] * float4(v.posIn, 1.0);\n"
|
|
|
|
" vtf.mvNorm = vu.mvInv[0] * float4(v.normIn, 0.0);\n"
|
|
|
|
" vtf.mvpPos = vu.proj * vtf.mvPos;\n";
|
|
|
|
}
|
2016-04-03 06:19:03 +00:00
|
|
|
|
2015-11-18 23:56:45 +00:00
|
|
|
int tcgIdx = 0;
|
|
|
|
for (const TexCoordGen& tcg : m_tcgs)
|
|
|
|
{
|
|
|
|
if (tcg.m_mtx < 0)
|
2016-03-04 23:02:44 +00:00
|
|
|
retval += hecl::Format(" vtf.tcgs%u = %s;\n", tcgIdx,
|
2015-11-18 23:56:45 +00:00
|
|
|
EmitTexGenSource2(tcg.m_src, tcg.m_uvIdx).c_str());
|
|
|
|
else
|
2016-07-19 20:33:04 +00:00
|
|
|
retval += hecl::Format(" vtf.tcgs%u = (texMtxs[%u].postMtx * float4(%s((texMtxs[%u].mtx * %s).xyz), 1.0)).xy;\n", tcgIdx, tcg.m_mtx,
|
2016-07-19 06:12:00 +00:00
|
|
|
tcg.m_norm ? "normalize" : "", tcg.m_mtx, EmitTexGenSource4(tcg.m_src, tcg.m_uvIdx).c_str());
|
2015-11-18 23:56:45 +00:00
|
|
|
++tcgIdx;
|
|
|
|
}
|
2016-04-03 06:19:03 +00:00
|
|
|
|
2015-11-18 23:56:45 +00:00
|
|
|
return retval + " return vtf;\n}\n";
|
|
|
|
}
|
|
|
|
|
2016-04-04 06:15:07 +00:00
|
|
|
std::string Metal::makeFrag(size_t blockCount, const char** blockNames,
|
|
|
|
const ShaderFunction& lighting) const
|
2015-11-18 23:56:45 +00:00
|
|
|
{
|
|
|
|
std::string lightingSrc;
|
|
|
|
if (lighting.m_source)
|
|
|
|
lightingSrc = lighting.m_source;
|
2016-04-03 06:19:03 +00:00
|
|
|
|
2015-11-18 23:56:45 +00:00
|
|
|
std::string texMapDecl;
|
|
|
|
if (m_texMapEnd)
|
|
|
|
{
|
|
|
|
for (int i=0 ; i<m_texMapEnd ; ++i)
|
2016-04-04 06:15:07 +00:00
|
|
|
texMapDecl += hecl::Format(",\ntexture2d<float> tex%u [[ texture(%u) ]]", i, i);
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string blockCall;
|
|
|
|
for (size_t i=0 ; i<blockCount ; ++i)
|
|
|
|
{
|
|
|
|
texMapDecl += hecl::Format(",\nconstant %s& block%" PRISize " [[ buffer(%" PRISize ") ]]", blockNames[i], i, i + 4);
|
|
|
|
if (blockCall.size())
|
|
|
|
blockCall += ", ";
|
|
|
|
blockCall += hecl::Format("block%" PRISize, i);
|
2015-11-18 23:56:45 +00:00
|
|
|
}
|
2016-04-03 06:19:03 +00:00
|
|
|
|
2015-11-18 23:56:45 +00:00
|
|
|
std::string retval = "#include <metal_stdlib>\nusing namespace metal;\n"
|
2016-04-03 06:19:03 +00:00
|
|
|
"constexpr sampler samp(address::repeat, filter::linear, mip_filter::linear);\n" +
|
2015-11-18 23:56:45 +00:00
|
|
|
GenerateVertToFragStruct() + "\n" +
|
|
|
|
lightingSrc + "\n" +
|
|
|
|
"fragment float4 fmain(VertToFrag vtf [[ stage_in ]]" + texMapDecl + ")\n{\n";
|
2016-04-03 06:19:03 +00:00
|
|
|
|
|
|
|
|
2015-11-18 23:56:45 +00:00
|
|
|
if (m_lighting)
|
|
|
|
{
|
|
|
|
if (lighting.m_entry)
|
2016-04-04 06:15:07 +00:00
|
|
|
retval += hecl::Format(" float4 lighting = %s(%s, vtf.mvPos, vtf.mvNorm);\n", lighting.m_entry, blockCall.c_str());
|
2015-11-18 23:56:45 +00:00
|
|
|
else
|
|
|
|
retval += " float4 lighting = float4(1.0,1.0,1.0,1.0);\n";
|
|
|
|
}
|
2016-04-03 06:19:03 +00:00
|
|
|
|
2015-11-18 23:56:45 +00:00
|
|
|
unsigned sampIdx = 0;
|
|
|
|
for (const TexSampling& sampling : m_texSamplings)
|
2016-03-04 23:02:44 +00:00
|
|
|
retval += hecl::Format(" float4 sampling%u = tex%u.sample(samp, vtf.tcgs%u);\n",
|
2015-11-18 23:56:45 +00:00
|
|
|
sampIdx++, sampling.mapIdx, sampling.tcgIdx);
|
2016-04-03 06:19:03 +00:00
|
|
|
|
2015-11-18 23:56:45 +00:00
|
|
|
if (m_alphaExpr.size())
|
|
|
|
retval += " return float4(" + m_colorExpr + ", " + m_alphaExpr + ");\n";
|
|
|
|
else
|
|
|
|
retval += " return float4(" + m_colorExpr + ", 1.0);\n";
|
2016-04-03 06:19:03 +00:00
|
|
|
|
2015-11-18 23:56:45 +00:00
|
|
|
return retval + "}\n";
|
|
|
|
}
|
|
|
|
|
2016-04-04 06:15:07 +00:00
|
|
|
std::string Metal::makeFrag(size_t blockCount, const char** blockNames,
|
|
|
|
const ShaderFunction& lighting,
|
2015-11-18 23:56:45 +00:00
|
|
|
const ShaderFunction& post) const
|
|
|
|
{
|
|
|
|
std::string lightingSrc;
|
|
|
|
if (lighting.m_source)
|
|
|
|
lightingSrc = lighting.m_source;
|
2016-04-03 06:19:03 +00:00
|
|
|
|
2015-11-18 23:56:45 +00:00
|
|
|
std::string postSrc;
|
|
|
|
if (post.m_source)
|
|
|
|
postSrc = post.m_source;
|
2016-04-03 06:19:03 +00:00
|
|
|
|
2015-11-18 23:56:45 +00:00
|
|
|
std::string postEntry;
|
|
|
|
if (post.m_entry)
|
|
|
|
postEntry = post.m_entry;
|
2016-04-03 06:19:03 +00:00
|
|
|
|
2015-11-18 23:56:45 +00:00
|
|
|
std::string texMapDecl;
|
|
|
|
if (m_texMapEnd)
|
|
|
|
{
|
|
|
|
for (int i=0 ; i<m_texMapEnd ; ++i)
|
2016-04-04 06:15:07 +00:00
|
|
|
texMapDecl += hecl::Format(",\ntexture2d<float> tex%u [[ texture(%u) ]]", i, i);
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string blockCall;
|
|
|
|
for (size_t i=0 ; i<blockCount ; ++i)
|
|
|
|
{
|
|
|
|
texMapDecl += hecl::Format(",\nconstant %s& block%" PRISize " [[ buffer(%" PRISize ") ]]", blockNames[i], i, i + 4);
|
|
|
|
if (blockCall.size())
|
|
|
|
blockCall += ", ";
|
|
|
|
blockCall += hecl::Format("block%" PRISize, i);
|
2015-11-18 23:56:45 +00:00
|
|
|
}
|
2016-04-03 06:19:03 +00:00
|
|
|
|
2015-11-18 23:56:45 +00:00
|
|
|
std::string retval = "#include <metal_stdlib>\nusing namespace metal;\n"
|
2016-04-03 06:19:03 +00:00
|
|
|
"constexpr sampler samp(address::repeat, filter::linear, mip_filter::linear);\n" +
|
2015-11-18 23:56:45 +00:00
|
|
|
GenerateVertToFragStruct() + "\n" +
|
|
|
|
lightingSrc + "\n" +
|
2016-04-04 06:15:07 +00:00
|
|
|
"fragment float4 fmain(VertToFrag vtf [[ stage_in ]]" + texMapDecl + ")\n{\n";
|
2016-04-03 06:19:03 +00:00
|
|
|
|
2015-11-18 23:56:45 +00:00
|
|
|
if (m_lighting)
|
|
|
|
{
|
|
|
|
if (lighting.m_entry)
|
2016-04-04 06:15:07 +00:00
|
|
|
retval += hecl::Format(" float4 lighting = %s(%s, vtf.mvPos, vtf.mvNorm);\n", lighting.m_entry, blockCall.c_str());
|
2015-11-18 23:56:45 +00:00
|
|
|
else
|
|
|
|
retval += " float4 lighting = float4(1.0,1.0,1.0,1.0);\n";
|
|
|
|
}
|
2016-04-03 06:19:03 +00:00
|
|
|
|
2015-11-18 23:56:45 +00:00
|
|
|
unsigned sampIdx = 0;
|
|
|
|
for (const TexSampling& sampling : m_texSamplings)
|
2016-03-04 23:02:44 +00:00
|
|
|
retval += hecl::Format(" float4 sampling%u = tex%u.sample(samp, vtf.tcgs%u);\n",
|
2015-11-18 23:56:45 +00:00
|
|
|
sampIdx++, sampling.mapIdx, sampling.tcgIdx);
|
2016-04-03 06:19:03 +00:00
|
|
|
|
2015-11-18 23:56:45 +00:00
|
|
|
if (m_alphaExpr.size())
|
|
|
|
retval += " return " + postEntry + "(float4(" + m_colorExpr + ", " + m_alphaExpr + "));\n";
|
|
|
|
else
|
|
|
|
retval += " return " + postEntry + "(float4(" + m_colorExpr + ", 1.0));\n";
|
2016-04-03 06:19:03 +00:00
|
|
|
|
2015-11-18 23:56:45 +00:00
|
|
|
return retval + "}\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
namespace Runtime
|
|
|
|
{
|
|
|
|
|
|
|
|
struct MetalBackendFactory : IShaderBackendFactory
|
|
|
|
{
|
|
|
|
Backend::Metal m_backend;
|
2016-04-03 06:19:03 +00:00
|
|
|
|
2015-11-18 23:56:45 +00:00
|
|
|
ShaderCachedData buildShaderFromIR(const ShaderTag& tag,
|
2016-03-04 23:02:44 +00:00
|
|
|
const hecl::Frontend::IR& ir,
|
|
|
|
hecl::Frontend::Diagnostics& diag,
|
2016-04-03 06:19:03 +00:00
|
|
|
boo::IGraphicsDataFactory::Context& ctx,
|
2016-02-23 02:33:29 +00:00
|
|
|
boo::IShaderPipeline*& objOut)
|
2015-11-18 23:56:45 +00:00
|
|
|
{
|
|
|
|
if (!m_rtHint)
|
2016-03-04 23:02:44 +00:00
|
|
|
Log.report(logvisor::Fatal,
|
2015-11-18 23:56:45 +00:00
|
|
|
"ShaderCacheManager::setRenderTargetHint must be called before making metal shaders");
|
2016-04-03 06:19:03 +00:00
|
|
|
|
2015-11-18 23:56:45 +00:00
|
|
|
m_backend.reset(ir, diag);
|
|
|
|
size_t cachedSz = 2;
|
2016-04-03 06:19:03 +00:00
|
|
|
|
2015-11-18 23:56:45 +00:00
|
|
|
std::string vertSource =
|
|
|
|
m_backend.makeVert(tag.getColorCount(), tag.getUvCount(), tag.getWeightCount(),
|
|
|
|
tag.getSkinSlotCount(), tag.getTexMtxCount());
|
|
|
|
cachedSz += vertSource.size() + 1;
|
2016-04-03 06:19:03 +00:00
|
|
|
|
2016-04-04 06:15:07 +00:00
|
|
|
std::string fragSource = m_backend.makeFrag(0, nullptr);
|
2015-11-18 23:56:45 +00:00
|
|
|
cachedSz += fragSource.size() + 1;
|
2016-02-23 02:33:29 +00:00
|
|
|
objOut =
|
2016-04-03 06:19:03 +00:00
|
|
|
static_cast<boo::MetalDataFactory::Context&>(ctx).
|
|
|
|
newShaderPipeline(vertSource.c_str(), fragSource.c_str(),
|
|
|
|
tag.newVertexFormat(ctx), m_rtHint,
|
|
|
|
m_backend.m_blendSrc, m_backend.m_blendDst,
|
|
|
|
tag.getPrimType(),
|
|
|
|
tag.getDepthTest(), tag.getDepthWrite(),
|
|
|
|
tag.getBackfaceCulling());
|
|
|
|
if (!objOut)
|
2016-03-04 23:02:44 +00:00
|
|
|
Log.report(logvisor::Fatal, "unable to build shader");
|
2016-04-03 06:19:03 +00:00
|
|
|
|
2015-11-18 23:56:45 +00:00
|
|
|
ShaderCachedData dataOut(tag, cachedSz);
|
2016-03-04 23:02:44 +00:00
|
|
|
athena::io::MemoryWriter w(dataOut.m_data.get(), dataOut.m_sz);
|
2015-11-21 02:16:54 +00:00
|
|
|
w.writeUByte(atUint8(m_backend.m_blendSrc));
|
|
|
|
w.writeUByte(atUint8(m_backend.m_blendDst));
|
2015-11-18 23:56:45 +00:00
|
|
|
w.writeString(vertSource);
|
|
|
|
w.writeString(fragSource);
|
2016-04-03 06:19:03 +00:00
|
|
|
|
2015-11-18 23:56:45 +00:00
|
|
|
return dataOut;
|
|
|
|
}
|
2016-04-03 06:19:03 +00:00
|
|
|
|
|
|
|
boo::IShaderPipeline* buildShaderFromCache(const ShaderCachedData& data,
|
|
|
|
boo::IGraphicsDataFactory::Context& ctx)
|
2015-11-18 23:56:45 +00:00
|
|
|
{
|
|
|
|
if (!m_rtHint)
|
2016-03-04 23:02:44 +00:00
|
|
|
Log.report(logvisor::Fatal,
|
2015-11-18 23:56:45 +00:00
|
|
|
"ShaderCacheManager::setRenderTargetHint must be called before making metal shaders");
|
2016-04-03 06:19:03 +00:00
|
|
|
|
2015-11-18 23:56:45 +00:00
|
|
|
const ShaderTag& tag = data.m_tag;
|
2016-03-04 23:02:44 +00:00
|
|
|
athena::io::MemoryReader r(data.m_data.get(), data.m_sz);
|
2015-11-18 23:56:45 +00:00
|
|
|
boo::BlendFactor blendSrc = boo::BlendFactor(r.readUByte());
|
|
|
|
boo::BlendFactor blendDst = boo::BlendFactor(r.readUByte());
|
|
|
|
std::string vertSource = r.readString();
|
|
|
|
std::string fragSource = r.readString();
|
|
|
|
boo::IShaderPipeline* ret =
|
2016-04-03 06:19:03 +00:00
|
|
|
static_cast<boo::MetalDataFactory::Context&>(ctx).
|
|
|
|
newShaderPipeline(vertSource.c_str(), fragSource.c_str(),
|
|
|
|
tag.newVertexFormat(ctx), m_rtHint,
|
|
|
|
blendSrc, blendDst, tag.getPrimType(),
|
|
|
|
tag.getDepthTest(), tag.getDepthWrite(),
|
|
|
|
tag.getBackfaceCulling());
|
2015-11-18 23:56:45 +00:00
|
|
|
if (!ret)
|
2016-03-04 23:02:44 +00:00
|
|
|
Log.report(logvisor::Fatal, "unable to build shader");
|
2015-11-18 23:56:45 +00:00
|
|
|
return ret;
|
|
|
|
}
|
2016-04-03 06:19:03 +00:00
|
|
|
|
2015-11-18 23:56:45 +00:00
|
|
|
ShaderCachedData buildExtendedShaderFromIR(const ShaderTag& tag,
|
2016-03-04 23:02:44 +00:00
|
|
|
const hecl::Frontend::IR& ir,
|
|
|
|
hecl::Frontend::Diagnostics& diag,
|
2015-11-18 23:56:45 +00:00
|
|
|
const std::vector<ShaderCacheExtensions::ExtensionSlot>& extensionSlots,
|
2016-04-03 06:19:03 +00:00
|
|
|
boo::IGraphicsDataFactory::Context& ctx,
|
2015-11-18 23:56:45 +00:00
|
|
|
FReturnExtensionShader returnFunc)
|
|
|
|
{
|
|
|
|
if (!m_rtHint)
|
2016-03-04 23:02:44 +00:00
|
|
|
Log.report(logvisor::Fatal,
|
2015-11-18 23:56:45 +00:00
|
|
|
"ShaderCacheManager::setRenderTargetHint must be called before making metal shaders");
|
2016-04-03 06:19:03 +00:00
|
|
|
|
2015-11-18 23:56:45 +00:00
|
|
|
m_backend.reset(ir, diag);
|
|
|
|
size_t cachedSz = 2;
|
2016-04-03 06:19:03 +00:00
|
|
|
|
2015-11-18 23:56:45 +00:00
|
|
|
std::string vertSource =
|
|
|
|
m_backend.makeVert(tag.getColorCount(), tag.getUvCount(), tag.getWeightCount(),
|
|
|
|
tag.getSkinSlotCount(), tag.getTexMtxCount());
|
|
|
|
cachedSz += vertSource.size() + 1;
|
2016-04-03 06:19:03 +00:00
|
|
|
|
2015-11-18 23:56:45 +00:00
|
|
|
std::vector<std::string> fragSources;
|
|
|
|
fragSources.reserve(extensionSlots.size());
|
|
|
|
for (const ShaderCacheExtensions::ExtensionSlot& slot : extensionSlots)
|
|
|
|
{
|
2016-04-04 06:15:07 +00:00
|
|
|
fragSources.push_back(m_backend.makeFrag(slot.blockCount, slot.blockNames, slot.lighting, slot.post));
|
2015-11-18 23:56:45 +00:00
|
|
|
cachedSz += fragSources.back().size() + 1;
|
|
|
|
boo::IShaderPipeline* ret =
|
2016-04-03 06:19:03 +00:00
|
|
|
static_cast<boo::MetalDataFactory::Context&>(ctx).
|
|
|
|
newShaderPipeline(vertSource.c_str(), fragSources.back().c_str(),
|
|
|
|
tag.newVertexFormat(ctx), m_rtHint,
|
|
|
|
m_backend.m_blendSrc, m_backend.m_blendDst,
|
|
|
|
tag.getPrimType(),
|
|
|
|
tag.getDepthTest(), tag.getDepthWrite(),
|
|
|
|
tag.getBackfaceCulling());
|
2015-11-18 23:56:45 +00:00
|
|
|
if (!ret)
|
2016-03-04 23:02:44 +00:00
|
|
|
Log.report(logvisor::Fatal, "unable to build shader");
|
2015-11-18 23:56:45 +00:00
|
|
|
returnFunc(ret);
|
|
|
|
}
|
2016-04-03 06:19:03 +00:00
|
|
|
|
2015-11-18 23:56:45 +00:00
|
|
|
ShaderCachedData dataOut(tag, cachedSz);
|
2016-03-04 23:02:44 +00:00
|
|
|
athena::io::MemoryWriter w(dataOut.m_data.get(), dataOut.m_sz);
|
2015-11-21 02:16:54 +00:00
|
|
|
w.writeUByte(atUint8(m_backend.m_blendSrc));
|
|
|
|
w.writeUByte(atUint8(m_backend.m_blendDst));
|
2015-11-18 23:56:45 +00:00
|
|
|
w.writeString(vertSource);
|
|
|
|
for (const std::string src : fragSources)
|
|
|
|
w.writeString(src);
|
2016-04-03 06:19:03 +00:00
|
|
|
|
2015-11-18 23:56:45 +00:00
|
|
|
return dataOut;
|
|
|
|
}
|
2016-04-03 06:19:03 +00:00
|
|
|
|
2015-11-18 23:56:45 +00:00
|
|
|
void buildExtendedShaderFromCache(const ShaderCachedData& data,
|
|
|
|
const std::vector<ShaderCacheExtensions::ExtensionSlot>& extensionSlots,
|
2016-04-03 06:19:03 +00:00
|
|
|
boo::IGraphicsDataFactory::Context& ctx,
|
2015-11-18 23:56:45 +00:00
|
|
|
FReturnExtensionShader returnFunc)
|
|
|
|
{
|
|
|
|
if (!m_rtHint)
|
2016-03-04 23:02:44 +00:00
|
|
|
Log.report(logvisor::Fatal,
|
2015-11-18 23:56:45 +00:00
|
|
|
"ShaderCacheManager::setRenderTargetHint must be called before making metal shaders");
|
2016-04-03 06:19:03 +00:00
|
|
|
|
2015-11-18 23:56:45 +00:00
|
|
|
const ShaderTag& tag = data.m_tag;
|
2016-03-04 23:02:44 +00:00
|
|
|
athena::io::MemoryReader r(data.m_data.get(), data.m_sz);
|
2015-11-18 23:56:45 +00:00
|
|
|
boo::BlendFactor blendSrc = boo::BlendFactor(r.readUByte());
|
|
|
|
boo::BlendFactor blendDst = boo::BlendFactor(r.readUByte());
|
|
|
|
std::string vertSource = r.readString();
|
|
|
|
for (const ShaderCacheExtensions::ExtensionSlot& slot : extensionSlots)
|
|
|
|
{
|
|
|
|
std::string fragSource = r.readString();
|
|
|
|
boo::IShaderPipeline* ret =
|
2016-04-03 06:19:03 +00:00
|
|
|
static_cast<boo::MetalDataFactory::Context&>(ctx).
|
|
|
|
newShaderPipeline(vertSource.c_str(), fragSource.c_str(),
|
|
|
|
tag.newVertexFormat(ctx), m_rtHint,
|
|
|
|
blendSrc, blendDst, tag.getPrimType(),
|
|
|
|
tag.getDepthTest(), tag.getDepthWrite(),
|
|
|
|
tag.getBackfaceCulling());
|
2015-11-18 23:56:45 +00:00
|
|
|
if (!ret)
|
2016-03-04 23:02:44 +00:00
|
|
|
Log.report(logvisor::Fatal, "unable to build shader");
|
2015-11-18 23:56:45 +00:00
|
|
|
returnFunc(ret);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2016-04-03 06:19:03 +00:00
|
|
|
IShaderBackendFactory* _NewMetalBackendFactory()
|
2015-11-18 23:56:45 +00:00
|
|
|
{
|
2016-04-03 06:19:03 +00:00
|
|
|
return new struct MetalBackendFactory();
|
2015-11-18 23:56:45 +00:00
|
|
|
}
|
2016-04-03 06:19:03 +00:00
|
|
|
|
2015-11-18 23:56:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|