summaryrefslogtreecommitdiff
path: root/themes/Renderer3d.h
blob: 7e89c93bde5ef5c9aa5fadc6c015aa2c95981b11 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#ifndef RENDERER3D_H
#define RENDERER3D_H
#include "mathlib.h"
#include "list.h"
#include "types.h"
#include <string>

struct Renderer3D;

struct Vertex3d {
    Vector4 position;
    Vector4 color;
	Vector4 normal;
};

struct Mesh3d {
    u32 vao;
    u32 vbo;
    u32 ebo;
    matte::List<Vertex3d> vertices;
    matte::List<u32> indices;
    Mat4x4 model;

    void load(Renderer3D* renderer);
    void render(Renderer3D* renderer);
    void unload();
};

struct WebglContext;
struct Renderer3D {
    WebglContext* context = NULL;
	Mat4x4 projection;
    Mat4x4 view;
	u32 shader;
    Vector4 clearColor;

    struct {
		i32 position;
		i32 color;
		i32 normal;
	} attributes;

	struct {
		i32 projection;
        i32 view;
		i32 model;
	} uniforms;

    void load(WebglContext* context);
	void render();
	void unload();
};

Mesh3d Mesh3d_fromObj(Renderer3D* renderer, const char* content, const i32 len);

#endif