2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-08 13:44:56 +00:00

Fix Windows build

This commit is contained in:
2021-05-24 22:02:57 -04:00
parent d0f088e7d5
commit 4b4e991c39
3 changed files with 15 additions and 6 deletions

View File

@@ -74,6 +74,7 @@ void ImGuiEngine::Initialize(boo::IGraphicsDataFactory* factory, const boo::SWin
void ImGuiEngine::Shutdown() {
ImGui::DestroyContext();
ShaderDataBinding.reset();
ShaderPipeline.reset();
}

View File

@@ -68,7 +68,7 @@ struct VertToFrag
float4 col : COLOR0;
};
VertToFrag main(in VS_INPUT v)
VertToFrag main(in VertData v)
{
VertToFrag vtf;
vtf.pos = mul(xf, float4(v.pos.xy, 0.f, 1.f));