diff options
Diffstat (limited to 'src/scene/mesh_impl.h')
-rw-r--r-- | src/scene/mesh_impl.h | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/src/scene/mesh_impl.h b/src/scene/mesh_impl.h deleted file mode 100644 index 560b77e..0000000 --- a/src/scene/mesh_impl.h +++ /dev/null | |||
@@ -1,12 +0,0 @@ | |||
1 | #pragma once | ||
2 | |||
3 | #include <gfx/scene/mesh.h> | ||
4 | |||
5 | typedef struct Mesh { | ||
6 | const Geometry* geometry; | ||
7 | const Material* material; | ||
8 | ShaderProgram* shader; | ||
9 | } Mesh; | ||
10 | |||
11 | // TODO: a mesh_render() that takes a transform, applies the material and the | ||
12 | // transform, and then renders the geometry. | ||