| 185 | }; |
| 186 | |
| 187 | int main(int argc, char** argv) { |
| 188 | qputenv("QSG_INFO", "1"); |
| 189 | QApplication app(argc, argv); |
| 190 | |
| 191 | QRhiWindow::InitParams initParams; |
| 192 | initParams.backend = QRhi::Vulkan; |
| 193 | MyWindow window(initParams); |
| 194 | window.resize({ 800,600 }); |
| 195 | window.show(); |
| 196 | |
| 197 | return app.exec(); |
| 198 | } |
nothing calls this directly
no outgoing calls
no test coverage detected