mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2025-10-29 23:36:02 +03:00
20 lines
319 B
C++
20 lines
319 B
C++
#ifndef GX_DRAW_HPP
|
|
#define GX_DRAW_HPP
|
|
|
|
#include "gx/CGxBatch.hpp"
|
|
#include "gx/Types.hpp"
|
|
#include <cstdint>
|
|
|
|
class C3Vector;
|
|
class CImVector;
|
|
|
|
void GxDraw(CGxBatch*, int32_t);
|
|
|
|
void GxSceneClear(uint32_t, CImVector);
|
|
|
|
void GxScenePresent(void);
|
|
|
|
void GxuFlushDrawList(EGxuDrawListCategory, const C3Vector&);
|
|
|
|
#endif
|