aboutsummaryrefslogtreecommitdiff
path: root/include/mgl/graphics/vertex.h
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2021-10-22 07:03:45 +0200
committerdec05eba <dec05eba@protonmail.com>2021-10-22 08:18:09 +0200
commitdf2e6771c5bf6f09e62f9d6b86d83a2631ea365f (patch)
tree97eef20a43f4b240ecb173b08df3c60c4f8658fb /include/mgl/graphics/vertex.h
parentfaa74e2c942102a9b1aa215a913fddf422714d7e (diff)
Use const where possible in function params
Diffstat (limited to 'include/mgl/graphics/vertex.h')
-rw-r--r--include/mgl/graphics/vertex.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/mgl/graphics/vertex.h b/include/mgl/graphics/vertex.h
index b4a5830..69400b4 100644
--- a/include/mgl/graphics/vertex.h
+++ b/include/mgl/graphics/vertex.h
@@ -6,8 +6,8 @@
typedef struct {
mgl_vec2f position;
- mgl_color color;
mgl_vec2f texcoords;
+ mgl_color color;
} mgl_vertex;
#endif /* MGL_VERTEX_H */