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"
......@@ -5,16 +5,16 @@
#include <vkcv/CoreManager.hpp>
int main(int argc, const char** argv) {
const char* applicationName = "First Triangle";
vkcv::initGLFW();
vkcv::Window window = vkcv::Window::create(
"first triangle",
applicationName,
800,
600,
false
);
vkcv::Context context = vkcv::Context::create(
"First Triangle",
applicationName,
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