mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2025-12-12 11:12:29 +00:00
15 lines
348 B
C++
15 lines
348 B
C++
#ifndef GX_BLIT_HPP
|
|
#define GX_BLIT_HPP
|
|
|
|
#include "gx/Types.hpp"
|
|
#include <cstdint>
|
|
|
|
class C2iVector;
|
|
|
|
typedef void (*BLIT_FUNCTION)(const C2iVector&, const void*, uint32_t, void*, uint32_t);
|
|
|
|
void Blit(const C2iVector&, BlitAlpha, const void*, uint32_t, BlitFormat, void*, uint32_t, BlitFormat);
|
|
|
|
BlitFormat GxGetBlitFormat(EGxTexFormat);
|
|
|
|
#endif
|