mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2025-12-14 03:52:30 +00:00
chore: initial commit
This commit is contained in:
commit
70b00c5c38
965 changed files with 264882 additions and 0 deletions
22
src/gx/RenderState.hpp
Normal file
22
src/gx/RenderState.hpp
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
#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
|
||||
Loading…
Add table
Add a link
Reference in a new issue