summaryrefslogtreecommitdiff
path: root/src/rendering.cc
diff options
context:
space:
mode:
authorFabrice <fabrice@schaub-dev.xyz>2026-02-11 23:27:23 +0100
committerFabrice <fabrice@schaub-dev.xyz>2026-02-11 23:27:23 +0100
commit97d4714a5078c0472350981f0ae02c58ee66eff9 (patch)
treee8a7e06f115f09e6007dbaaf5df22198447ff6b0 /src/rendering.cc
parent8536bcc71498c9109ef4254760edc4cd70ddcccd (diff)
i hate vaos
Diffstat (limited to 'src/rendering.cc')
-rw-r--r--src/rendering.cc12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/rendering.cc b/src/rendering.cc
index 06a40c7..e916d31 100644
--- a/src/rendering.cc
+++ b/src/rendering.cc
@@ -202,15 +202,3 @@ void wayc_ebo_deinit(ebo_t* ebo) {
wayc_notnull(ebo);
glDeleteBuffers(1, ebo);
}
-
-bool wayc_vao_init(vao_t* vao, vbo_t vbo, ebo_t ebo, const vao_attr_s* attrs,
- u32 attr_count) {
- wayc_notnull(vao);
- wayc_notnull(attrs);
-
- glCreateVertexArrays(1, vao);
- if (*vao == 0) return false;
-}
-
-void wayc_vao_use(vao_t vao);
-void wayc_vao_deinit(vao_t* vao); \ No newline at end of file