#include // #include #include #include int main(int argc, const char** argv) { (void)argc; (void)argv; std::cout << __FILE__ << "::" << __LINE__ << '\n'; try { sophia::runComputeSmokeTest(TESTBED_SHADER_DIR "/smoke_test.comp"); } catch (const std::exception& e) { std::cerr << "Compute smoke test failed: " << e.what() << '\n'; return EXIT_FAILURE; } // sophia::Application app{ // {.width = 750, .height = 1000, .name = "Testbed", .headless = true}}; // app.run(); return EXIT_SUCCESS; }