Skip to content
Snippets Groups Projects
Commit 77796c3c authored by Sebastian Gaida's avatar Sebastian Gaida
Browse files

[#8] unify applicationName

parent f9dd1684
No related branches found
No related tags found
1 merge request!9Resolve "Window creation"
This commit is part of merge request !9. Comments created here will be created in the context of that merge request.
...@@ -5,16 +5,16 @@ ...@@ -5,16 +5,16 @@
#include <vkcv/CoreManager.hpp> #include <vkcv/CoreManager.hpp>
int main(int argc, const char** argv) { int main(int argc, const char** argv) {
const char* applicationName = "First Triangle";
vkcv::initGLFW(); vkcv::initGLFW();
vkcv::Window window = vkcv::Window::create( vkcv::Window window = vkcv::Window::create(
"first triangle", applicationName,
800, 800,
600, 600,
false false
); );
vkcv::Context context = vkcv::Context::create( vkcv::Context context = vkcv::Context::create(
"First Triangle", applicationName,
VK_MAKE_VERSION(0, 0, 1) VK_MAKE_VERSION(0, 0, 1)
); );
......
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