diff options
Diffstat (limited to 'src/systems/terrain.c')
-rw-r--r-- | src/systems/terrain.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/systems/terrain.c b/src/systems/terrain.c index ead7700..069000e 100644 --- a/src/systems/terrain.c +++ b/src/systems/terrain.c @@ -174,7 +174,7 @@ void Terrain_Draw(Terrain_Storage* storage) { GPU_EncodeSetVertexBuffer(enc, storage->vertex_buffer); GPU_EncodeSetIndexBuffer(enc, storage->index_buffer); - GPU_EncodeDrawIndexed(enc, storage->indices_count); + GPU_EncodeDrawIndexedTris(enc, storage->indices_count); // glDrawArrays(GL_POINTS, 0, storage->num_vertices); } |