diff options
Diffstat (limited to 'Runtime/Graphics/Texture.h')
-rw-r--r-- | Runtime/Graphics/Texture.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Runtime/Graphics/Texture.h b/Runtime/Graphics/Texture.h index d02634c..6ead2fb 100644 --- a/Runtime/Graphics/Texture.h +++ b/Runtime/Graphics/Texture.h @@ -61,10 +61,13 @@ public: class Texture : public LuaBind::NativeClass<Texture> { public: + Texture(TextureSetting setting, int width, int height)/*throw TextureException*/; // ΏΥΜωΝΌ Texture(TextureSetting setting, ImageData* imgData)/*throw TextureException*/; Texture(LuaBind::VM* vm, TextureSetting setting, ImageData* imgData)/*throw TextureException*/; ~Texture(); + void UpdateSubImage(Internal::Rect rect, int format, int type, const void* data); + GET(int, Width, m_Width); GET(int, Height, m_Height); |