| 1401 | }; |
| 1402 | |
| 1403 | int main() { |
| 1404 | ComputeShaderApplication app; |
| 1405 | |
| 1406 | try { |
| 1407 | app.run(); |
| 1408 | } catch (const std::exception& e) { |
| 1409 | std::cerr << e.what() << std::endl; |
| 1410 | return EXIT_FAILURE; |
| 1411 | } |
| 1412 | |
| 1413 | return EXIT_SUCCESS; |
| 1414 | } |