summaryrefslogtreecommitdiff
path: root/gfx/models
diff options
context:
space:
mode:
authorDan Goodliffe <dan@randomdan.homeip.net>2024-06-01 14:08:26 +0100
committerDan Goodliffe <dan@randomdan.homeip.net>2024-06-01 14:08:26 +0100
commit950cf865ba59b50f7ea0589b26391080d8974d25 (patch)
tree0fd6e173b1f6f73ae9c3ff748119158b88b5fe8c /gfx/models
parentAdd missing include (diff)
downloadilt-950cf865ba59b50f7ea0589b26391080d8974d25.tar.bz2
ilt-950cf865ba59b50f7ea0589b26391080d8974d25.tar.xz
ilt-950cf865ba59b50f7ea0589b26391080d8974d25.zip
Reformat with new clang-format
Diffstat (limited to 'gfx/models')
-rw-r--r--gfx/models/vertex.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/gfx/models/vertex.h b/gfx/models/vertex.h
index 3c6215f..5b858de 100644
--- a/gfx/models/vertex.h
+++ b/gfx/models/vertex.h
@@ -8,8 +8,8 @@ public:
#ifndef __cpp_aggregate_paren_init
constexpr Vertex(
RelativePosition3D pos, TextureRelCoord texCoord, Normal3D normal, RGBA colour = {}, GLuint material = 0) :
- pos {std::move(pos)},
- texCoord {std::move(texCoord)}, normal {std::move(normal)}, colour {std::move(colour)}, material {material}
+ pos {std::move(pos)}, texCoord {std::move(texCoord)}, normal {std::move(normal)}, colour {std::move(colour)},
+ material {material}
{
}
#endif