summaryrefslogtreecommitdiffhomepage
path: root/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'main.cpp')
-rw-r--r--main.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/main.cpp b/main.cpp
index 84069870..f9daa3be 100644
--- a/main.cpp
+++ b/main.cpp
@@ -59,9 +59,9 @@ application::application(const Arguments& arguments):
vertices[i] = { positions[i], texcoords[i] };
_mesh.setCount((int)std::size(indices))
- .addVertexBuffer(GL::Buffer{vertices}, 0, tile_shader::Position{}, tile_shader::TextureCoordinates{})
- .setIndexBuffer(GL::Buffer{indices}, 0,
- GL::MeshIndexType::UnsignedShort);
+ .addVertexBuffer(GL::Buffer{vertices}, 0,
+ tile_shader::Position{}, tile_shader::TextureCoordinates{})
+ .setIndexBuffer(GL::Buffer{indices}, 0, GL::MeshIndexType::UnsignedShort);
}
void application::drawEvent() {