nvc0: init miptree transfer layer stride
authorChristoph Bumiller <e0425955@student.tuwien.ac.at>
Thu, 23 Dec 2010 20:52:48 +0000 (21:52 +0100)
committerChristoph Bumiller <e0425955@student.tuwien.ac.at>
Mon, 27 Dec 2010 12:29:10 +0000 (13:29 +0100)
src/gallium/drivers/nvc0/nvc0_transfer.c

index 138d157652b2b45fe7d613172f0a21bafa784d51..82755113008a18740e6b400d2153a2124f9c2a1e 100644 (file)
@@ -269,6 +269,7 @@ nvc0_miptree_transfer_new(struct pipe_context *pctx,
    tx->nblocksy = util_format_get_nblocksy(res->format, box->height);
 
    tx->base.stride = tx->nblocksx * util_format_get_blocksize(res->format);
+   tx->base.layer_stride = tx->nblocksy * tx->base.stride;
 
    w = u_minify(res->width0, level);
    h = u_minify(res->height0, level);
@@ -287,7 +288,7 @@ nvc0_miptree_transfer_new(struct pipe_context *pctx,
    tx->rect[0].pitch = lvl->pitch;
    tx->rect[0].domain = NOUVEAU_BO_VRAM;
 
-   size = tx->nblocksy * tx->base.stride;
+   size = tx->base.layer_stride;
 
    ret = nouveau_bo_new(dev, NOUVEAU_BO_GART | NOUVEAU_BO_MAP, 0,
                         size * tx->base.box.depth, &tx->rect[1].bo);