Update gitignore

This commit is contained in:
2024-10-11 18:00:39 -05:00
parent b11d15764e
commit 6b8b24da65
4 changed files with 153 additions and 2 deletions

View File

@@ -57,4 +57,5 @@ namespace Global {
}
return indices;
}
}

View File

@@ -1,4 +1,5 @@
#pragma once
#include <glm/detail/qualifier.hpp>
#include <glm/ext/vector_float2.hpp>
#include <glm/ext/vector_float3.hpp>
#include <iostream>
@@ -51,7 +52,6 @@ namespace Global {
return attributeDescriptions;
}
};
const uint32_t WIDTH = 800;
const uint32_t HEIGHT = 600;

View File

@@ -9,7 +9,6 @@ VkBuffer indexBuffer;
VkDeviceMemory indexBufferMemory;
namespace Buffers {
const std::vector<Global::Vertex> vertices = {
{{-0.5f, -0.5f}, {1.0f, 0.0f, 0.0f}},
{{0.5f, -0.5f}, {0.0f, 1.0f, 0.0f}},