#pragma once #include namespace Kore { namespace Graphics3 { class Texture; } class TextureUnitImpl { public: int unit; }; class TextureImpl { protected: // static TreeMap images; public: unsigned int texture; #ifdef KINC_ANDROID bool external_oes; #endif u8 pixfmt; ~TextureImpl(); }; }