diff options
Diffstat (limited to 'draw/wireframe-mesh.cpp')
-rw-r--r-- | draw/wireframe-mesh.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/draw/wireframe-mesh.cpp b/draw/wireframe-mesh.cpp index b0ba7676..3fc53c6c 100644 --- a/draw/wireframe-mesh.cpp +++ b/draw/wireframe-mesh.cpp @@ -46,5 +46,9 @@ void mesh_base::draw(tile_shader& shader) shader.draw(_mesh); } +void mesh_base::set_subdata(Containers::ArrayView<const void> array) +{ + _vertex_buffer.setSubData(0, array); +} } // namespace floormat::wireframe |