summaryrefslogtreecommitdiff
path: root/src/renderer
diff options
context:
space:
mode:
authorOmniscient <omniscient.oce@gmail.com>2024-03-05 23:03:20 +1100
committerOmniscient <omniscient.oce@gmail.com>2024-03-05 23:03:20 +1100
commit14424312813b55c62e44ef5c2152e27301733497 (patch)
tree52b93d6cf0a9656e6cbd755feeed5691b76f8f99 /src/renderer
parent6a849ab47bf585a9948ef6225915a421eff3902f (diff)
pass mesh and material darrays for happy path.
we will probably swap to an arena allocator for the temp darrays soon but not right yet
Diffstat (limited to 'src/renderer')
-rw-r--r--src/renderer/render.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/renderer/render.c b/src/renderer/render.c
index f12954f..a0cc559 100644
--- a/src/renderer/render.c
+++ b/src/renderer/render.c
@@ -96,6 +96,7 @@ texture texture_data_load(const char* path, bool invert_y) {
}
void texture_data_upload(texture* tex) {
+ printf("Texture name %s\n", tex->name);
TRACE("Upload texture data");
u32 texture_id;
glGenTextures(1, &texture_id);