Compare commits

..

1 Commits

Author SHA1 Message Date
Marco Tylus
0c0c936874
Merge 8935c520c0 into f8f00b599e 2026-02-18 07:17:15 +00:00
2 changed files with 0 additions and 16 deletions

View File

@ -38,13 +38,6 @@ struct ShaderConstants {
class CGxDevice {
public:
// Structs
struct TextureTarget {
CGxTex* m_texture;
uint32_t m_plane;
void* m_apiSpecific;
};
// Static variables
static uint32_t s_alphaRef[];
static C3Vector s_pointScaleIdentity;
@ -124,9 +117,6 @@ class CGxDevice {
int32_t m_primIndexDirty = 0;
TSFixedArray<CGxAppRenderState> m_appRenderStates;
TSFixedArray<CGxStateBom> m_hwRenderStates;
// TODO
TextureTarget m_textureTarget[GxBuffers_Last];
// TODO
uint32_t m_baseMipLevel = 0; // TODO placeholder
// Virtual member functions

View File

@ -55,12 +55,6 @@ enum EGxBlend {
GxBlends_Last = 12
};
enum EGxBuffer {
GxBuffers_Color = 0,
GxBuffers_Depth = 1,
GxBuffers_Last,
};
enum EGxColorFormat {
GxCF_argb = 0,
GxCF_rgba = 1,