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:
authorGermano <germano.costa@ig.com.br>2018-04-03 18:18:56 +0300
committerGermano <germano.costa@ig.com.br>2018-04-03 18:18:56 +0300
commitc713e9c4724f2f75e28eb421021ed0428e919aab (patch)
tree7423f6a7c024c38569d21738662b2f55279b38e0 /source/blender/draw/intern
parent6744c34a263798c54a6e1afb699039dc4fac6163 (diff)
Draw Manager: Improve description of `draw_frustum_boundbox_calc` variables
Diffstat (limited to 'source/blender/draw/intern')
-rw-r--r--source/blender/draw/intern/draw_manager_exec.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/source/blender/draw/intern/draw_manager_exec.c b/source/blender/draw/intern/draw_manager_exec.c
index 07df8c28aeb..58cd6ce44c6 100644
--- a/source/blender/draw/intern/draw_manager_exec.c
+++ b/source/blender/draw/intern/draw_manager_exec.c
@@ -397,9 +397,8 @@ static void draw_frustum_boundbox_calc(const float (*projmat)[4], const float (*
copy_m3_m4(screenvecs, viewinv);
copy_v3_v3(loc, viewinv[3]);
- /* get the values of the minimum and maximum
- * clipping planes distances and the height and
- *width of the near plane divided by half. */
+ /* get the values of the minimum and maximum clipping planes distances
+ * and half the width and height of the nearplane rectangle. */
if (is_persp) {
near = projmat[3][2] / (projmat[2][2] - 1.0f);
far = projmat[3][2] / (projmat[2][2] + 1.0f);