summaryrefslogtreecommitdiff
path: root/source/modules/asura-core/graphics/binding/_texture.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'source/modules/asura-core/graphics/binding/_texture.cpp')
-rw-r--r--source/modules/asura-core/graphics/binding/_texture.cpp85
1 files changed, 0 insertions, 85 deletions
diff --git a/source/modules/asura-core/graphics/binding/_texture.cpp b/source/modules/asura-core/graphics/binding/_texture.cpp
deleted file mode 100644
index f5e5f17..0000000
--- a/source/modules/asura-core/graphics/binding/_texture.cpp
+++ /dev/null
@@ -1,85 +0,0 @@
-#include "../texture.h"
-
-using namespace std;
-
-namespace_begin(AsuraEngine)
-namespace_begin(Graphics)
-
-
- LUAX_REGISTRY(Texture)
- {
- LUAX_REGISTER_METHODS(state,
- { "SetFilterMode", _SetFilterMode },
- { "SetWrapMode", _SetWrapMode },
- { "GetFilterMode", _GetFilterMode },
- { "GetWrapMode", _GetWrapMode },
- { "IsGenMipmap", _IsGenMipmap }
- );
- }
-
- LUAX_POSTPROCESS(Texture)
- {
- LUAX_REGISTER_ENUM(state, "EColorFormat",
- { "UNKNOWN", COLOR_FORMAT_UNKNOWN },
- { "RGBA8", COLOR_FORMAT_RGBA8 },
- { "RGBA32F", COLOR_FORMAT_RGBA32F }
- );
- LUAX_REGISTER_ENUM(state, "EFilterMode",
- { "NEAREST", FILTER_MODE_NEAREST },
- { "LINEAR", FILTER_MODE_LINEAR }
- );
- LUAX_REGISTER_ENUM(state, "EWrapMode",
- { "REPEAT", WRAP_MODE_REPEAT },
- { "MIRROR", WRAP_MODE_MIRROR },
- { "CLAMPTOEDGE", WRAP_MODE_CLAMPTOEDGE },
- { "CLAMPTOBORDER", WRAP_MODE_CLAMPTOBORDER }
- );
-
- }
-
- // texture:SetFilterMode(minFilter, magFilter)
- LUAX_IMPL_METHOD(Texture, _SetFilterMode)
- {
- LUAX_PREPARE(L, Texture);
- FilterMode min = (FilterMode)state.CheckValue<int>(2);
- FilterMode mag = (FilterMode)state.CheckValue<int>(3);
- self->SetFilterMode(min, mag);
- return 0;
- }
-
- // texture:SetWrapMode(wrap_mode)
- LUAX_IMPL_METHOD(Texture, _SetWrapMode)
- {
- LUAX_PREPARE(L, Texture);
- WrapMode wrap_mode = (WrapMode)state.CheckValue<int>(2);
- self->SetWrapMode(wrap_mode);
- return 0;
- }
-
- // min, mag = texture:GetFilterMode()
- LUAX_IMPL_METHOD(Texture, _GetFilterMode)
- {
- LUAX_PREPARE(L, Texture);
- state.Push((int)self->m_MinFilter);
- state.Push((int)self->m_MagFilter);
- return 2;
- }
-
- // wrapmode= texture:GetWrapMode()
- LUAX_IMPL_METHOD(Texture, _GetWrapMode)
- {
- LUAX_PREPARE(L, Texture);
- state.Push((int)self->m_WrapMode);
- return 1;
- }
-
- // texture:IsGenMipmap()
- LUAX_IMPL_METHOD(Texture, _IsGenMipmap)
- {
- LUAX_PREPARE(L, Texture);
- state.Push(self->IsGenMipmap());
- return 1;
- }
-
- }
-} \ No newline at end of file