diff --git a/projects/indirect_dispatch/resources/models/Sphere.gltf b/projects/indirect_dispatch/resources/models/Sphere.gltf deleted file mode 100644 index 0b380598f600a973d23993f84374437a8771ebbd..0000000000000000000000000000000000000000 --- a/projects/indirect_dispatch/resources/models/Sphere.gltf +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:19b29ddffaeecfa15f19dc943c0ecc9cb3c22d47adb35c19e8727edd7e29c565 -size 1847 diff --git a/projects/indirect_dispatch/resources/models/cube.gltf b/projects/indirect_dispatch/resources/models/cube.gltf index d6b80705a40929f8637a735e4f29b63934828940..38b1c218a965b4ccdf4e88b5d18a3c1bdc519847 100644 --- a/projects/indirect_dispatch/resources/models/cube.gltf +++ b/projects/indirect_dispatch/resources/models/cube.gltf @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2418009f665c0862617868de1dc4ff29533c1203956d8ea90c5eee2f50a517e8 +oid sha256:d710d2e005893256abeee910fdba8851e9c654c7f3b548bdd39bdbc3c043e73f size 2270 diff --git a/projects/indirect_dispatch/resources/models/Sphere.bin b/projects/indirect_dispatch/resources/models/sphere.bin similarity index 100% rename from projects/indirect_dispatch/resources/models/Sphere.bin rename to projects/indirect_dispatch/resources/models/sphere.bin diff --git a/projects/indirect_dispatch/resources/models/sphere.gltf b/projects/indirect_dispatch/resources/models/sphere.gltf new file mode 100644 index 0000000000000000000000000000000000000000..05ca88fb02594b5fc7bff14420d198e3cfff7bc9 --- /dev/null +++ b/projects/indirect_dispatch/resources/models/sphere.gltf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46911098be2cba7a817d6a2b92a65fbb36c48f3556385ef28d2fb5d9cddbcf2c +size 1847 diff --git a/projects/indirect_dispatch/src/App.cpp b/projects/indirect_dispatch/src/App.cpp index 4b372ae964e94819dd85ffe21b1e494186bc0591..68ff00600da812f9bfd92a7054b41e44e6a4fad0 100644 --- a/projects/indirect_dispatch/src/App.cpp +++ b/projects/indirect_dispatch/src/App.cpp @@ -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() { diff --git a/projects/indirect_dispatch/src/main.cpp b/projects/indirect_dispatch/src/main.cpp index 6e3d9e63285aedf83419aa24f22b5d42ce15a914..b27e0bcb8f1991d76b570b79da9cc4734cf52950 100644 --- a/projects/indirect_dispatch/src/main.cpp +++ b/projects/indirect_dispatch/src/main.cpp @@ -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();