summaryrefslogtreecommitdiff
path: root/src/static-plane.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/static-plane.hpp')
-rw-r--r--src/static-plane.hpp15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/static-plane.hpp b/src/static-plane.hpp
new file mode 100644
index 0000000..097a779
--- /dev/null
+++ b/src/static-plane.hpp
@@ -0,0 +1,15 @@
+#ifndef PKE_STATIC_PLANE_HPP
+#define PKE_STATIC_PLANE_HPP
+
+#include <glm/ext/vector_float3.hpp>
+#include <glm/ext/vector_float2.hpp>
+
+struct IntrinsicShapePlane {
+ glm::vec2 vert[4];
+ glm::vec2 uv[4];
+ uint16_t index[6];
+};
+
+extern IntrinsicShapePlane pkeIntrinsicsPlane;
+
+#endif /* PKE_STATIC_PLANE_HPP */