nvc0: change logic for centering of eng2d blit when downsampling
authorIlia Mirkin <imirkin@alum.mit.edu>
Fri, 18 Apr 2014 04:08:16 +0000 (00:08 -0400)
committerIlia Mirkin <imirkin@alum.mit.edu>
Sat, 19 Apr 2014 17:23:32 +0000 (13:23 -0400)
We want to center the sample. The old code may have been correct given
the limited values of ms_x/y, but the new logic should be more
intuitive. Note that ms_x can only be 1/2 and ms_y can only be 0/1.

Signed-off-by: Ilia Mirkin <imirkin@alum.mit.edu>
src/gallium/drivers/nouveau/nvc0/nvc0_surface.c

index 32d234e345303c97208c8303dada31657fde21c3..ac37e0ef29a5a0e7ac279d8b87ec8e848578dfd0 100644 (file)
@@ -1066,8 +1066,8 @@ nvc0_blit_eng2d(struct nvc0_context *nvc0, const struct pipe_blit_info *info)
 
    if (src->base.base.nr_samples > dst->base.base.nr_samples) {
       /* center src coorinates for proper MS resolve filtering */
-      srcx += (int64_t)(src->ms_x + 0) << 32;
-      srcy += (int64_t)(src->ms_y + 1) << 31;
+      srcx += (int64_t)1 << (src->ms_x + 31);
+      srcy += (int64_t)1 << (src->ms_y + 31);
    }
 
    dstx = info->dst.box.x << dst->ms_x;