summaryrefslogtreecommitdiff
path: root/Source/Asura.Engine/Graphics/Texture.h
diff options
context:
space:
mode:
authorchai <chaifix@163.com>2019-03-19 23:06:27 +0800
committerchai <chaifix@163.com>2019-03-19 23:06:27 +0800
commit1497dccd63a84b7ee2b229b1ad9c5c02718f2a78 (patch)
treef8d1bff50da13e126d08c7345653e002e293202d /Source/Asura.Engine/Graphics/Texture.h
parent5e2a973516e0729b225da9de0b03015dc5854ac4 (diff)
*rename
Diffstat (limited to 'Source/Asura.Engine/Graphics/Texture.h')
-rw-r--r--Source/Asura.Engine/Graphics/Texture.h66
1 files changed, 0 insertions, 66 deletions
diff --git a/Source/Asura.Engine/Graphics/Texture.h b/Source/Asura.Engine/Graphics/Texture.h
deleted file mode 100644
index 81aa469..0000000
--- a/Source/Asura.Engine/Graphics/Texture.h
+++ /dev/null
@@ -1,66 +0,0 @@
-#ifndef __ASURA_ENGINE_TEXTURE_H__
-#define __ASURA_ENGINE_TEXTURE_H__
-
-#include "Config.h"
-#include "Math/Rect.hpp"
-#include "Math/Vector2.hpp"
-#include "Scripting/Luax.hpp"
-#include "RenderState.h"
-#include "GL.h"
-
-namespace AsuraEngine
-{
- namespace Graphics
- {
-
- class RenderTarget;
-
- ///
- /// 2D࣬2d meshrender targetбʹáTextureȾԭϽǣϷϲԵѿϵΪ׼
- /// EditorҲϽΪԭ㣬Ϊ˷㡣
- ///
- ASURA_ABSTRACT class Texture
- {
- public:
-
- Texture();
-
- virtual ~Texture();
-
- GLuint GetGLTextureHandle() const;
-
- ///
- /// ȾtexturertϣԭϽǣң
- ///
- virtual void Render(const RenderTarget* rt, const RenderState& state) = 0;
-
- ///
- /// ȾtextureһֵrtϣԭϽǣң졣
- ///
- virtual void Render(const RenderTarget* rt, const Math::Rectf& quad, const RenderState& state) = 0;
-
- ///
- /// ù˷ʽ
- ///
- void SetSmooth(bool smooth);
-
- ///
- /// ظʽ
- ///
- void SetRepeated();
-
- protected:
-
- ///
- /// OpenGL texture handle
- ///
- GLuint mTextureHandle;
-
- };
-
- using Drawable = Texture;
-
- }
-}
-
-#endif \ No newline at end of file