summaryrefslogtreecommitdiff
path: root/source/modules/asura-core/graphics/binding
diff options
context:
space:
mode:
Diffstat (limited to 'source/modules/asura-core/graphics/binding')
-rw-r--r--source/modules/asura-core/graphics/binding/_color32.cpp27
-rw-r--r--source/modules/asura-core/graphics/binding/_image.cpp2
2 files changed, 3 insertions, 26 deletions
diff --git a/source/modules/asura-core/graphics/binding/_color32.cpp b/source/modules/asura-core/graphics/binding/_color32.cpp
index 7095866..ad7dad5 100644
--- a/source/modules/asura-core/graphics/binding/_color32.cpp
+++ b/source/modules/asura-core/graphics/binding/_color32.cpp
@@ -14,10 +14,7 @@ namespace AsuraEngine
{ "GetRed", _GetRed },
{ "GetGreen", _GetGreen },
{ "GetBlue", _GetBlue },
- { "GetAlpha", _GetAlpha },
- { "Multiply", _Multiply },
- { "Index", _Index },
- { "NewIndex", _NewIndex }
+ { "GetAlpha", _GetAlpha }
);
}
@@ -61,26 +58,6 @@ namespace AsuraEngine
}
- // color32:Multiply()
- LUAX_IMPL_METHOD(Color32, _Multiply)
- {
- LUAX_PREPARE(L, Color32);
-
- }
-
- // color32:Index()
- LUAX_IMPL_METHOD(Color32, _Index)
- {
- LUAX_PREPARE(L, Color32);
-
- }
-
- // color32:NewIndex()
- LUAX_IMPL_METHOD(Color32, _NewIndex)
- {
- LUAX_PREPARE(L, Color32);
-
- }
-
}
}
+ \ No newline at end of file
diff --git a/source/modules/asura-core/graphics/binding/_image.cpp b/source/modules/asura-core/graphics/binding/_image.cpp
index cc9a669..407ada7 100644
--- a/source/modules/asura-core/graphics/binding/_image.cpp
+++ b/source/modules/asura-core/graphics/binding/_image.cpp
@@ -54,7 +54,7 @@ namespace AsuraEngine
state.Push(self->GetWidth());
return 1;
}
-
+
// height = image:GetHeight()
LUAX_IMPL_METHOD(Image, _GetHeight)
{