mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2025-04-16 10:04:42 +03:00
16 lines
348 B
C++
16 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
|