bleh
All checks were successful
Build / Build (push) Successful in 1m47s

This commit is contained in:
2026-05-24 12:13:08 -04:00
parent 26a392b1d0
commit 2f1f196d6b
10 changed files with 94 additions and 407 deletions

View File

@@ -23,14 +23,14 @@ int main() {
OatmealUtils::getLogger("context")->info("Creating context");
try {
ctx = std::make_shared<Oatmeal::ctx>(window);
ctx = std::make_shared<Oatmeal::ctx>(window, Oatmeal::CtxCfg{.backend = Oatmeal::BACKEND_VULKAN});
} catch (const std::exception &e) {
OatmealUtils::getLogger("context")->critical("{}", e.what());
return EXIT_FAILURE;
}
OatmealUtils::getLogger("context")->info("Device name: {}", ctx->getDeviceName());
OatmealUtils::getLogger("context")->info("Device Type: {}", ctx->getDeviceType());
// OatmealUtils::getLogger("context")->info("Device name: {}", ctx->getDeviceName());
// OatmealUtils::getLogger("context")->info("Device Type: {}", ctx->getDeviceType());
OatmealUtils::getLogger("context")->info("Starting main loop");
while (!glfwWindowShouldClose(window)) {