aboutsummaryrefslogtreecommitdiffstats
path: root/vertex.h
diff options
context:
space:
mode:
authorTomasz Kramkowski <tk@the-tk.com>2018-04-27 20:56:00 +0100
committerTomasz Kramkowski <tk@the-tk.com>2018-04-27 20:56:00 +0100
commitbab0824608498d1079d4e9522f3014d3d538aabe (patch)
tree932f082b58fd48f85fbbdfa3f7419d2b3b03eedb /vertex.h
parent3d73622dbd5a9ddc687fe6f42268c760695d7226 (diff)
downloadfaqe-bab0824608498d1079d4e9522f3014d3d538aabe.tar.gz
faqe-bab0824608498d1079d4e9522f3014d3d538aabe.tar.xz
faqe-bab0824608498d1079d4e9522f3014d3d538aabe.zip
Implement basic model loading of FMD format.
The FMD (Faqe Model Data) format is a format designed for faqe. It stores vertex, element and material information and mesh information. This patch provides the basic implementation and use of this format. This patch also implements perspective projection, depth testing and view and model matrices. An example fmd file is provided.
Diffstat (limited to 'vertex.h')
-rw-r--r--vertex.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/vertex.h b/vertex.h
new file mode 100644
index 0000000..7f58ee9
--- /dev/null
+++ b/vertex.h
@@ -0,0 +1,16 @@
+/*
+ * Copyright (C) 2018 Tomasz Kramkowski <tk@the-tk.com>
+ * SPDX-License-Identifier: MIT
+ */
+#ifndef VERTEX_H
+#define VERTEX_H
+
+#include "linmath.h"
+
+struct vertex {
+ vec3 pos;
+ vec3 norm;
+ vec2 uv;
+};
+
+#endif // VERTEX_H