diff options
| author | gingerBill <gingerBill@users.noreply.github.com> | 2025-08-16 09:06:25 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-08-16 09:06:25 +0100 |
| commit | fb4641307189b6952304dc1b2ff3dccdad75029c (patch) | |
| tree | 0dae9dab0ffd32587cbab37376f9d619728e2419 /vendor | |
| parent | d1ce7f8fe6018203ec9b0eb35556b3196a9e5fa3 (diff) | |
| parent | fbac18ec008cc555262ff7380343cf229f2f5d34 (diff) | |
Merge pull request #5590 from leecommamichael/master
[vendor:OpenGL] fix misnamed parameter
Diffstat (limited to 'vendor')
| -rw-r--r-- | vendor/OpenGL/wrappers.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vendor/OpenGL/wrappers.odin b/vendor/OpenGL/wrappers.odin index 1eb8fc72f..d68efee6c 100644 --- a/vendor/OpenGL/wrappers.odin +++ b/vendor/OpenGL/wrappers.odin @@ -880,7 +880,7 @@ when !GL_DEBUG { // VERSION_1_2 DrawRangeElements :: proc "c" (mode, start, end: u32, count: i32, type: u32, indices: rawptr, loc := #caller_location) { impl_DrawRangeElements(mode, start, end, count, type, indices); debug_helper(loc, 0, mode, start, end, count, type, indices) } - TexImage3D :: proc "c" (target: u32, level, internalformat, width, height, depth, border: i32, format, type: u32, pixels: rawptr, loc := #caller_location) { impl_TexImage3D(target, level, internalformat, width, height, depth, border, format, type, pixels); debug_helper(loc, 0, target, level, internalformat, width, height, depth, border, format, type, pixels) } + TexImage3D :: proc "c" (target: u32, level, internalformat, width, height, depth, border: i32, format, type: u32, data: rawptr, loc := #caller_location) { impl_TexImage3D(target, level, internalformat, width, height, depth, border, format, type, data); debug_helper(loc, 0, target, level, internalformat, width, height, depth, border, format, type, data) } TexSubImage3D :: proc "c" (target: u32, level, xoffset, yoffset, zoffset, width, height, depth: i32, format, type: u32, pixels: rawptr, loc := #caller_location) { impl_TexSubImage3D(target, level, xoffset, yoffset, zoffset, width, height, depth, format, type, pixels); debug_helper(loc, 0, target, level, xoffset, yoffset, zoffset, width, height, depth, format, type, pixels) } CopyTexSubImage3D :: proc "c" (target: u32, level, xoffset, yoffset, zoffset, x, y, width, height: i32, loc := #caller_location) { impl_CopyTexSubImage3D(target, level, xoffset, yoffset, zoffset, x, y, width, height); debug_helper(loc, 0, target, level, xoffset, yoffset, zoffset, x, y, width, height) } |