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/gpu/intern/gpu_matrix.cc')
-rw-r--r--source/blender/gpu/intern/gpu_matrix.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/gpu/intern/gpu_matrix.cc b/source/blender/gpu/intern/gpu_matrix.cc
index 24cdea74347..2ae50d913da 100644
--- a/source/blender/gpu/intern/gpu_matrix.cc
+++ b/source/blender/gpu/intern/gpu_matrix.cc
@@ -736,7 +736,7 @@ float GPU_polygon_offset_calc(const float (*winmat)[4], float viewdist, float di
int depthbits = 24;
depth_fac = 1.0f / (float)((1 << depthbits) - 1);
}
- offs = (-1.0 / winmat[2][2]) * dist * depth_fac;
+ ofs = (-1.0 / winmat[2][2]) * dist * depth_fac;
UNUSED_VARS(viewdist);
#endif
@@ -765,10 +765,10 @@ void GPU_polygon_offset(float viewdist, float dist)
/* dist is from camera to center point */
- float offs = GPU_polygon_offset_calc(winmat, viewdist, dist);
+ float ofs = GPU_polygon_offset_calc(winmat, viewdist, dist);
- winmat[3][2] -= offs;
- offset += offs;
+ winmat[3][2] -= ofs;
+ offset += ofs;
}
else {
winmat[3][2] += offset;