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/render/intern/source/zbuf.c')
-rw-r--r--source/blender/render/intern/source/zbuf.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/source/blender/render/intern/source/zbuf.c b/source/blender/render/intern/source/zbuf.c
index 7790a4cff65..6fe31075847 100644
--- a/source/blender/render/intern/source/zbuf.c
+++ b/source/blender/render/intern/source/zbuf.c
@@ -1606,12 +1606,13 @@ void zbuffer_solid(RenderPart *pa)
/* needed for transform from hoco to zbuffer co */
zspan.zmulx= ((float)R.winx)/2.0;
zspan.zmuly= ((float)R.winy)/2.0;
- zspan.zofsx= -pa->disprect.xmin -0.5f;
- zspan.zofsy= -pa->disprect.ymin -0.5f;
-
if(R.osa) {
- zspan.zofsx-= R.jit[pa->sample][0];
- zspan.zofsy-= R.jit[pa->sample][1];
+ zspan.zofsx= -pa->disprect.xmin - R.jit[pa->sample][0];
+ zspan.zofsy= -pa->disprect.ymin - R.jit[pa->sample][1];
+ }
+ else {
+ zspan.zofsx= -pa->disprect.xmin -0.5f;
+ zspan.zofsy= -pa->disprect.ymin -0.5f;
}
/* the buffers */