aboutsummaryrefslogtreecommitdiff
path: root/src/llr/mesh_impl.h
blob: a997d5bd2093b1d5439e95a8b8e46660305f361b (plain)
1
2
3
4
5
6
7
8
9
#pragma once

#include <gfx/llr/mesh.h>

typedef struct Mesh {
  const Geometry* geometry;
  const Material* material;
  ShaderProgram*  shader; // TODO: Move this back to Material?
} Mesh;