aboutsummaryrefslogtreecommitdiff
path: root/src/llr/mesh_impl.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/llr/mesh_impl.h')
-rw-r--r--src/llr/mesh_impl.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/llr/mesh_impl.h b/src/llr/mesh_impl.h
index 47ff525..96e60df 100644
--- a/src/llr/mesh_impl.h
+++ b/src/llr/mesh_impl.h
@@ -1,12 +1,9 @@
1#pragma once 1#pragma once
2 2
3#include <../../include/gfx/llr/mesh.h> 3#include <gfx/llr/mesh.h>
4 4
5typedef struct Mesh { 5typedef struct Mesh {
6 const Geometry* geometry; 6 const Geometry* geometry;
7 const Material* material; 7 const Material* material;
8 ShaderProgram* shader; 8 ShaderProgram* shader;
9} Mesh; 9} Mesh;
10
11// TODO: a mesh_render() that takes a transform, applies the material and the
12// transform, and then renders the geometry.