Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/blender/windowmanager/manipulators/intern/manipulator_library/arrow_manipulator.c')
-rw-r--r--source/blender/windowmanager/manipulators/intern/manipulator_library/arrow_manipulator.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/windowmanager/manipulators/intern/manipulator_library/arrow_manipulator.c b/source/blender/windowmanager/manipulators/intern/manipulator_library/arrow_manipulator.c
index 3cb67259e03..99ca161f08f 100644
--- a/source/blender/windowmanager/manipulators/intern/manipulator_library/arrow_manipulator.c
+++ b/source/blender/windowmanager/manipulators/intern/manipulator_library/arrow_manipulator.c
@@ -210,7 +210,7 @@ static void arrow_draw_intern(ArrowManipulator *arrow, const bool select, const
mul_mat3_m4_fl(mat, arrow->manipulator.scale);
gpuPushMatrix();
- gpuMultMatrix3D(mat);
+ gpuMultMatrix(mat);
gpuTranslate3fv(arrow->manipulator.offset);
@@ -228,7 +228,7 @@ static void arrow_draw_intern(ArrowManipulator *arrow, const bool select, const
mul_mat3_m4_fl(mat, inter->init_scale);
gpuPushMatrix();
- gpuMultMatrix3D(mat);
+ gpuMultMatrix(mat);
gpuTranslate3fv(arrow->manipulator.offset);
glEnable(GL_BLEND);