Skip to content
Snippets Groups Projects
Verified Commit 898a2709 authored by Tobias Frisch's avatar Tobias Frisch
Browse files

[#106] Fixed weird Windows flexing

parent 2afcd5fa
No related branches found
No related tags found
1 merge request!89Resolve "Indirect Dispatch"
Checking pipeline status
Source diff could not be displayed: it is stored in LFS. Options to address this: view the blob.
Source diff could not be displayed: it is stored in LFS. Options to address this: view the blob.
......@@ -63,6 +63,8 @@ bool App::initialize() {
const int cameraIndex = m_cameraManager.addCamera(vkcv::camera::ControllerType::PILOT);
m_cameraManager.getCamera(cameraIndex).setPosition(glm::vec3(0, 0, -3));
return true;
}
void App::run() {
......
......@@ -5,6 +5,7 @@ int main(int argc, const char** argv) {
App app;
if (!app.initialize()) {
std::cerr << "Application initialization failed, exiting" << std::endl;
return 1;
}
app.run();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment