| 161 | }; |
| 162 | |
| 163 | int main(int argc, char** argv) { |
| 164 | qputenv("QSG_INFO", "1"); |
| 165 | QApplication app(argc, argv); |
| 166 | |
| 167 | QRhiWindow::InitParams initParams; |
| 168 | initParams.backend = QRhi::Vulkan; |
| 169 | MyWindow window(initParams); |
| 170 | window.resize({ 800,600 }); |
| 171 | window.show(); |
| 172 | |
| 173 | return app.exec(); |
| 174 | } |
nothing calls this directly
no outgoing calls
no test coverage detected