| 132 | }; |
| 133 | |
| 134 | int main(int argc, char** argv) { |
| 135 | qputenv("QSG_INFO", "1"); |
| 136 | QApplication app(argc, argv); |
| 137 | |
| 138 | QRhiWindow::InitParams initParams; |
| 139 | initParams.backend = QRhi::Vulkan; |
| 140 | MyWindow* window = new MyWindow(initParams); |
| 141 | window->resize({ 800,600 }); |
| 142 | window->show(); |
| 143 | |
| 144 | app.exec(); |
| 145 | delete window; |
| 146 | return 0; |
| 147 | } |
nothing calls this directly
no outgoing calls
no test coverage detected