mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2025-10-29 23:36:02 +03:00
23 lines
335 B
C++
23 lines
335 B
C++
#ifndef GX_RENDER_STATE_HPP
|
|
#define GX_RENDER_STATE_HPP
|
|
|
|
#include "gx/Types.hpp"
|
|
#include <cstdint>
|
|
|
|
class CGxShader;
|
|
class CGxTex;
|
|
|
|
void GxRsPop(void);
|
|
|
|
void GxRsPush(void);
|
|
|
|
void GxRsSet(EGxRenderState, int32_t);
|
|
|
|
void GxRsSet(EGxRenderState, CGxShader*);
|
|
|
|
void GxRsSet(EGxRenderState, CGxTex*);
|
|
|
|
void GxRsSetAlphaRef(void);
|
|
|
|
#endif
|