sdlPopGpuDebugGroup function gpu
Ends the most-recently pushed debug group.
\param command_buffer a command buffer.
\since This function is available since SDL 3.2.0.
\sa SDL_PushGPUDebugGroup
extern SDL_DECLSPEC void SDLCALL SDL_PopGPUDebugGroup( SDL_GPUCommandBuffer *command_buffer)
Implementation
void sdlPopGpuDebugGroup(Pointer<SdlGpuCommandBuffer> commandBuffer) {
final sdlPopGpuDebugGroupLookupFunction = _libSdl
.lookupFunction<
Void Function(Pointer<SdlGpuCommandBuffer> commandBuffer),
void Function(Pointer<SdlGpuCommandBuffer> commandBuffer)
>('SDL_PopGPUDebugGroup');
return sdlPopGpuDebugGroupLookupFunction(commandBuffer);
}