summaryrefslogtreecommitdiff
path: root/src/render/skybox.c
diff options
context:
space:
mode:
authoromniscient <17525998+omnisci3nce@users.noreply.github.com>2024-08-13 13:18:24 +1000
committeromniscient <17525998+omnisci3nce@users.noreply.github.com>2024-08-13 13:18:24 +1000
commit0c2f902238010903388b7d9a3af00979340eff2c (patch)
treeb718d72d8761769ec4aefbfd74cbb2d695f89741 /src/render/skybox.c
parent43d915b2ceb3f5e439c09c772e9ebc7542c1a2bb (diff)
add debug draw bbox and add topology to draw calls
Diffstat (limited to 'src/render/skybox.c')
-rw-r--r--src/render/skybox.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/render/skybox.c b/src/render/skybox.c
index b228c82..b4e1e42 100644
--- a/src/render/skybox.c
+++ b/src/render/skybox.c
@@ -154,7 +154,7 @@ void Skybox_Draw(Skybox* skybox, Camera camera) {
GPU_EncodeSetVertexBuffer(enc, skybox->cube.vertex_buffer);
GPU_EncodeSetIndexBuffer(enc, skybox->cube.index_buffer);
- GPU_EncodeDraw(enc, 36);
+ GPU_EncodeDrawTris(enc, 36);
GPU_CmdEncoder_EndRender(enc);
glDepthFunc(GL_LESS);