summaryrefslogtreecommitdiff
path: root/source/modules/asura-core/graphics/matrix_stack.cpp
diff options
context:
space:
mode:
authorchai <chaifix@163.com>2019-04-10 09:03:57 +0800
committerchai <chaifix@163.com>2019-04-10 09:03:57 +0800
commitb5b43bac50ad58949e70bcd1a34b1e6c4765fd51 (patch)
tree32e8655bf48ca059d818501c8d95fc92ae97b318 /source/modules/asura-core/graphics/matrix_stack.cpp
parent200f710983fd54b23437cb78d5a03c90b5a47523 (diff)
*misc
Diffstat (limited to 'source/modules/asura-core/graphics/matrix_stack.cpp')
-rw-r--r--source/modules/asura-core/graphics/matrix_stack.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/modules/asura-core/graphics/matrix_stack.cpp b/source/modules/asura-core/graphics/matrix_stack.cpp
index 920dded..d48a1e0 100644
--- a/source/modules/asura-core/graphics/matrix_stack.cpp
+++ b/source/modules/asura-core/graphics/matrix_stack.cpp
@@ -58,7 +58,7 @@ namespace AsuraEngine
mStack[this->top].Ortho(left, right, bottom, top, near, far);
}
- void MatrixStack::Rotate(float angle, float x, float y, float z)
+ void MatrixStack::Rotate(float angle)
{
mStack[top].Rotate(angle);
}
@@ -68,7 +68,7 @@ namespace AsuraEngine
mStack[top].Translate(x, y);
}
- void MatrixStack::Scale(float x, float y, float z)
+ void MatrixStack::Scale(float x, float y)
{
mStack[top].Scale(x, y);
}