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>2010-10-02 23:31:23 +0400
committerCampbell Barton <ideasman42@gmail.com>2010-10-02 23:31:23 +0400
commita6e78239424fa735fd71dd03a4c9501aa6635d9a (patch)
tree53fa9564ca5b4718fd3dfe5cd24c22259bc97b7b /source/blender/blenlib/intern/math_geom.c
parent5faa29b01dd6b47219d1aabb3217459ba1e2f56d (diff)
make fly mode border draw into a area drawing callback rather then using a flag (no functional change).
Diffstat (limited to 'source/blender/blenlib/intern/math_geom.c')
-rw-r--r--source/blender/blenlib/intern/math_geom.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/source/blender/blenlib/intern/math_geom.c b/source/blender/blenlib/intern/math_geom.c
index 3c34f4cda01..2aec707b4ea 100644
--- a/source/blender/blenlib/intern/math_geom.c
+++ b/source/blender/blenlib/intern/math_geom.c
@@ -1647,8 +1647,7 @@ void perspective_m4(float mat[][4],float left, float right, float bottom, float
}
-/* translate a matrix created by orthographic_m4 or perspective_m4 in viewspace XY coords (used to jitter the view)
- * transforms in worldspace coords. */
+/* translate a matrix created by orthographic_m4 or perspective_m4 in XY coords (used to jitter the view) */
void window_translate_m4(float winmat[][4], float perspmat[][4], float x, float y)
{
if(winmat[2][3] == -1.0f) {