From 4782c554fc3b6c988442d265c4f9b9111d3f584e Mon Sep 17 00:00:00 2001 From: fallenoak Date: Wed, 18 Feb 2026 06:15:53 -0600 Subject: [PATCH] feat(gx): add CGxDevice::TextureTarget --- src/gx/CGxDevice.hpp | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/gx/CGxDevice.hpp b/src/gx/CGxDevice.hpp index de72727..b4c719d 100644 --- a/src/gx/CGxDevice.hpp +++ b/src/gx/CGxDevice.hpp @@ -38,6 +38,13 @@ 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;