mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-12-08 18:24:55 +00:00
Update boo
This commit is contained in:
2
hecl/extern/boo
vendored
2
hecl/extern/boo
vendored
Submodule hecl/extern/boo updated: a832504456...7bda89073d
@@ -183,10 +183,16 @@ public:
|
|||||||
std::is_base_of<TessellationShader, I>,
|
std::is_base_of<TessellationShader, I>,
|
||||||
std::is_same<P, PlatformType::Metal>>>* = 0)
|
std::is_same<P, PlatformType::Metal>>>* = 0)
|
||||||
{
|
{
|
||||||
m_vertex = conv.getVertexConverter().convert(ctx, in);
|
|
||||||
m_fragment = conv.getFragmentConverter().convert(ctx, in);
|
|
||||||
if (in.HasTessellation)
|
if (in.HasTessellation)
|
||||||
|
{
|
||||||
|
m_control = conv.getControlConverter().convert(ctx, in);
|
||||||
m_evaluation = conv.getEvaluationConverter().convert(ctx, in);
|
m_evaluation = conv.getEvaluationConverter().convert(ctx, in);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
m_vertex = conv.getVertexConverter().convert(ctx, in);
|
||||||
|
}
|
||||||
|
m_fragment = conv.getFragmentConverter().convert(ctx, in);
|
||||||
m_vtxFmt = in.VtxFmt;
|
m_vtxFmt = in.VtxFmt;
|
||||||
m_additionalInfo = in.PipelineInfo;
|
m_additionalInfo = in.PipelineInfo;
|
||||||
MakeHash();
|
MakeHash();
|
||||||
|
|||||||
Reference in New Issue
Block a user