2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-21 14:19:12 +00:00

CWorldShadowShader construct fixes

This commit is contained in:
Jack Andersen
2017-10-01 15:01:11 -10:00
parent a84f5441a7
commit 8e98a5b058
6 changed files with 11 additions and 11 deletions

View File

@@ -67,7 +67,6 @@ struct CWorldShadowShaderGLDataBindingFactory : TShader<CWorldShadowShader>::IDa
filter.m_zDataBind = cctx.newShaderDataBinding(s_ZPipeline,
vtxFmt, filter.m_vbo, nullptr, nullptr,
1, bufs, stages, nullptr, nullptr, 0, nullptr, nullptr, nullptr);
filter._buildTex(ctx);
return nullptr;
}
};
@@ -87,7 +86,6 @@ struct CWorldShadowShaderVulkanDataBindingFactory : TShader<CWorldShadowShader>:
filter.m_zDataBind = cctx.newShaderDataBinding(s_ZPipeline, s_VtxFmt,
filter.m_vbo, nullptr, nullptr, 1, bufs,
nullptr, nullptr, nullptr, 0, nullptr, nullptr, nullptr);
filter._buildTex(ctx);
return nullptr;
}
};