mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-03 22:28:46 +00:00
remove unneeded semicolons
This commit is contained in:
Vendored
+2
-2
@@ -1266,9 +1266,9 @@ when !ODIN_DEBUG {
|
|||||||
GetTextureHandleARB :: proc "c" (target: u32, loc := #caller_location) -> u64
|
GetTextureHandleARB :: proc "c" (target: u32, loc := #caller_location) -> u64
|
||||||
{ ret := impl_GetTextureHandleARB(target); debug_helper(loc, 0, target); return ret }
|
{ ret := impl_GetTextureHandleARB(target); debug_helper(loc, 0, target); return ret }
|
||||||
GetTextureSamplerHandleARB :: proc "c" (texture, sampler: u32, loc := #caller_location) -> u64
|
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
|
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)
|
MakeTextureHandleResidentARB :: proc "c" (handle: u64, loc := #caller_location)
|
||||||
{ impl_MakeTextureHandleResidentARB(handle); debug_helper(loc, 0, handle) }
|
{ impl_MakeTextureHandleResidentARB(handle); debug_helper(loc, 0, handle) }
|
||||||
MakeImageHandleResidentARB :: proc "c" (handle: u64, access: u32, loc := #caller_location)
|
MakeImageHandleResidentARB :: proc "c" (handle: u64, access: u32, loc := #caller_location)
|
||||||
|
|||||||
Reference in New Issue
Block a user