summaryrefslogtreecommitdiff
path: root/themes/Renderer3d.h
diff options
context:
space:
mode:
Diffstat (limited to 'themes/Renderer3d.h')
-rw-r--r--themes/Renderer3d.h46
1 files changed, 46 insertions, 0 deletions
diff --git a/themes/Renderer3d.h b/themes/Renderer3d.h
new file mode 100644
index 0000000..add41d7
--- /dev/null
+++ b/themes/Renderer3d.h
@@ -0,0 +1,46 @@
+#ifndef RENDERER3D_H
+#define RENDERER3D_H
+#include "mathlib.h"
+#include "list.h"
+#include "types.h"
+#include <string>
+
+struct Vertex3d {
+ Vector4 position;
+ Vector4 color;
+};
+
+struct Mesh3d {
+ u32 vao;
+ u32 vbo;
+ u32 ebo;
+ matte::List<Vertex3d> vertices;
+ matte::List<u32> indices;
+ Mat4x4 model;
+};
+
+struct WebglContext;
+struct Renderer3D {
+ WebglContext* context = NULL;
+ Mat4x4 projection;
+ u32 shader;
+ Vector4 clearColor;
+
+ struct {
+ i32 position;
+ i32 color;
+ } attributes;
+
+ struct {
+ i32 projection;
+ i32 model;
+ } uniforms;
+
+ void load(WebglContext* context);
+ void render();
+ void unload();
+};
+
+Mesh3d Mesh3d_fromObj(std::string content);
+
+#endif \ No newline at end of file