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.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/modules/asura-core/graphics/binding/_texture.cpp b/source/modules/asura-core/graphics/binding/_texture.cpp
index 489d362..305ac22 100644
--- a/source/modules/asura-core/graphics/binding/_texture.cpp
+++ b/source/modules/asura-core/graphics/binding/_texture.cpp
@@ -61,8 +61,8 @@ namespace AsuraEngine
LUAX_IMPL_METHOD(Texture, _GetFilterMode)
{
LUAX_PREPARE(L, Texture);
- state.Push((int)self->mMinFilter);
- state.Push((int)self->mMagFilter);
+ state.Push((int)self->m_MinFilter);
+ state.Push((int)self->m_MagFilter);
return 2;
}
@@ -70,7 +70,7 @@ namespace AsuraEngine
LUAX_IMPL_METHOD(Texture, _GetWrapMode)
{
LUAX_PREPARE(L, Texture);
- state.Push((int)self->mWrapMode);
+ state.Push((int)self->m_WrapMode);
return 1;
}