feat(gx): add CGxDevice::TextureTarget

This commit is contained in:
fallenoak 2026-02-18 06:15:53 -06:00
parent 8c518f7e6d
commit 4782c554fc
No known key found for this signature in database
GPG Key ID: 7628F8E61AEA070D

View File

@ -38,6 +38,13 @@ struct ShaderConstants {
class CGxDevice { class CGxDevice {
public: public:
// Structs
struct TextureTarget {
CGxTex* m_texture;
uint32_t m_plane;
void* m_apiSpecific;
};
// Static variables // Static variables
static uint32_t s_alphaRef[]; static uint32_t s_alphaRef[];
static C3Vector s_pointScaleIdentity; static C3Vector s_pointScaleIdentity;