mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2025-04-16 01:55:21 +03:00
22 lines
361 B
C++
22 lines
361 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* batch, int32_t indexed);
|
|
|
|
void GxSceneClear(uint32_t, CImVector);
|
|
|
|
void GxScenePresent(uint32_t a2);
|
|
|
|
void GxSub682A00();
|
|
|
|
void GxuFlushDrawList(EGxuDrawListCategory, const C3Vector&);
|
|
|
|
#endif
|