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>2019-12-18 16:19:01 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-12-18 16:21:50 +0300
commit838dc349caa49ba65a1a5fb7bbb58f416fb933e6 (patch)
treebe947688eab17c3c115bf01a090674b329f99b4e /source/blender/blenlib/intern/math_geom.c
parent61f4a7d1f593e3870e7a0df4b32e95516b236eef (diff)
Cleanup: const warning, unused var
Diffstat (limited to 'source/blender/blenlib/intern/math_geom.c')
-rw-r--r--source/blender/blenlib/intern/math_geom.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenlib/intern/math_geom.c b/source/blender/blenlib/intern/math_geom.c
index ba2a8605dec..a17fecca303 100644
--- a/source/blender/blenlib/intern/math_geom.c
+++ b/source/blender/blenlib/intern/math_geom.c
@@ -4711,7 +4711,7 @@ void window_translate_m4(float winmat[4][4], float perspmat[4][4], const float x
*
* plane parameters can be NULL if you do not need them.
*/
-void planes_from_projmat(float mat[4][4],
+void planes_from_projmat(const float mat[4][4],
float left[4],
float right[4],
float top[4],