Skip to content
Snippets Groups Projects

Resolve "Window creation"

Merged Ghost User requested to merge 8-window-creation into develop
1 file
+ 0
3
Compare changes
  • Side-by-side
  • Inline
@@ -2,11 +2,9 @@
#include <iostream>
#include <vkcv/Context.hpp>
#include <vkcv/Window.hpp>
#include <vkcv/CoreManager.hpp>
int main(int argc, const char** argv) {
const char* applicationName = "First Triangle";
vkcv::initGLFW();
vkcv::Window window = vkcv::Window::create(
applicationName,
800,
@@ -36,6 +34,5 @@ int main(int argc, const char** argv) {
while (window.isWindowOpen()) {
window.pollEvents();
}
vkcv::terminateGLFW();
return 0;
}
Loading