the tmp fix for MCE_ASSERT in this context is just to comment it out for now

This commit is contained in:
Joud Kandeel
2026-03-06 20:02:22 +01:00
parent c44498eade
commit fcd4bd2f3f

View File

@@ -10,10 +10,10 @@ namespace mce {
eastl::unique_ptr<GraphicsContext> GraphicsContext::create(API api) {
switch (api) {
case API::OpenGL: return eastl::make_unique<GLGraphicsContext>();
case API::Vulkan: MCE_ASSERT(false, "Vulkan is currently unsupported"); return nullptr;
case API::Vulkan: /*MCE_ASSERT(false, "Vulkan is currently unsupported");*/ return nullptr;
}
MCE_ASSERT(false, "Unknown API");
/*MCE_ASSERT(false, "Unknown API");*/
return nullptr;
}
}