brimstone/src/brimstone/io/copy_pass.h
2024-11-04 12:32:36 +13:00

9 lines
197 B
C

#ifndef COPY_PASS_H
#define COPY_PASS_H
#include <SDL3/SDL_gpu.h>
SDL_GPUCopyPass* CopyPassBegin(SDL_GPUCommandBuffer* copy_command_buffer);
void CopyPassEnd(SDL_GPUCopyPass* copy_pass);
#endif