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:
authorCampbell Barton <ideasman42@gmail.com>2017-04-27 11:44:57 +0300
committerCampbell Barton <ideasman42@gmail.com>2017-04-27 11:44:57 +0300
commita845fc0d399deafe54cd1f70e97a97b7588be94d (patch)
tree0dde338feb18764f384812b1ae4868804becb6a6 /source/blender/gpu/intern/gpu_matrix.c
parentf4c548ce2b7dc4a02197bef494013bd64be411a2 (diff)
Fix gpuScaleUniform (caused strange pose-bone size)
Diffstat (limited to 'source/blender/gpu/intern/gpu_matrix.c')
-rw-r--r--source/blender/gpu/intern/gpu_matrix.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/source/blender/gpu/intern/gpu_matrix.c b/source/blender/gpu/intern/gpu_matrix.c
index c586e75c050..a24b735a5d3 100644
--- a/source/blender/gpu/intern/gpu_matrix.c
+++ b/source/blender/gpu/intern/gpu_matrix.c
@@ -357,7 +357,6 @@ void gpuScaleUniform(float factor)
#endif
Mat4 m;
scale_m4_fl(m, factor);
- m[2][2] = 1.0;
gpuMultMatrix(m);
}