From b1371d5c7a21589a968be943b55268f17087730a Mon Sep 17 00:00:00 2001 From: Laytan Laats Date: Fri, 1 Mar 2024 20:33:23 +0100 Subject: [PATCH] fix minor cgltf binding issue --- vendor/cgltf/cgltf.odin | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vendor/cgltf/cgltf.odin b/vendor/cgltf/cgltf.odin index 6e05c0b90..f432d0f0c 100644 --- a/vendor/cgltf/cgltf.odin +++ b/vendor/cgltf/cgltf.odin @@ -34,7 +34,7 @@ memory_options :: struct { } file_options :: struct { - read: proc "c" (memory_options: ^/*const*/memory_options, file_options: ^/*const*/file_options, path: cstring, size: uint, data: ^rawptr) -> result, + read: proc "c" (memory_options: ^/*const*/memory_options, file_options: ^/*const*/file_options, path: cstring, size: ^uint, data: ^rawptr) -> result, release: proc "c" (memory_options: ^/*const*/memory_options, file_options: ^/*const*/file_options, data: rawptr), user_data: rawptr, }