diff options
| author | Phil <homan.phil@gmail.com> | 2022-06-28 11:36:50 -0700 |
|---|---|---|
| committer | Phil <homan.phil@gmail.com> | 2022-06-28 11:36:50 -0700 |
| commit | 0a8e6169d741e96a6d8b2a2b98bbccd67ef7d4fc (patch) | |
| tree | 82bf999b28f90332d9dfcf316ab9278da6018f23 | |
| parent | b89bb877599d1b966ed831343503bb74e7e43908 (diff) | |
remove unneeded semicolons
| -rw-r--r-- | vendor/OpenGL/wrappers.odin | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vendor/OpenGL/wrappers.odin b/vendor/OpenGL/wrappers.odin index bb71b0e82..b62ed216b 100644 --- a/vendor/OpenGL/wrappers.odin +++ b/vendor/OpenGL/wrappers.odin @@ -1266,9 +1266,9 @@ when !ODIN_DEBUG { GetTextureHandleARB :: proc "c" (target: u32, loc := #caller_location) -> u64 { ret := impl_GetTextureHandleARB(target); debug_helper(loc, 0, target); return ret } GetTextureSamplerHandleARB :: proc "c" (texture, sampler: u32, loc := #caller_location) -> u64 - { ret := impl_GetTextureSamplerHandleARB(texture, sampler); debug_helper(loc, 0, texture, sampler); return ret; } + { ret := impl_GetTextureSamplerHandleARB(texture, sampler); debug_helper(loc, 0, texture, sampler); return ret } GetImageHandleARB :: proc "c" (texture: u32, level: i32, layered: bool, layer: i32, format: u32, loc := #caller_location) -> u64 - { ret := impl_GetImageHandleARB(texture, level, layered, layer, format); debug_helper(loc, 0, texture, level, layered, layer, format); return ret; } + { ret := impl_GetImageHandleARB(texture, level, layered, layer, format); debug_helper(loc, 0, texture, level, layered, layer, format); return ret } MakeTextureHandleResidentARB :: proc "c" (handle: u64, loc := #caller_location) { impl_MakeTextureHandleResidentARB(handle); debug_helper(loc, 0, handle) } MakeImageHandleResidentARB :: proc "c" (handle: u64, access: u32, loc := #caller_location) |