2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-15 00:06:09 +00:00

Start wiring up wgpu+winit

This commit is contained in:
2022-01-31 19:06:54 -05:00
parent 5491fd75cf
commit e48435f11e
209 changed files with 24234 additions and 8085 deletions

View File

@@ -27,7 +27,7 @@ class CMetroidModelInstance {
std::vector<CBooSurface> m_surfaces;
std::unique_ptr<CBooModel> m_instance;
hecl::HMDLMeta m_hmdlMeta;
std::unordered_map<int, CModelShaders::ShaderPipelines> m_shaders;
// std::unordered_map<int, CModelShaders::ShaderPipelines> m_shaders;
public:
CMetroidModelInstance() = default;
@@ -39,7 +39,7 @@ public:
m_surfaces.clear();
m_instance.reset();
m_hmdlMeta = {};
m_shaders.clear();
// m_shaders.clear();
}
};