nv50: fix bogus error message about 3d surfaces
authorChristoph Bumiller <e0425955@student.tuwien.ac.at>
Sat, 16 Jul 2011 11:00:52 +0000 (13:00 +0200)
committerChristoph Bumiller <e0425955@student.tuwien.ac.at>
Sat, 16 Jul 2011 11:00:52 +0000 (13:00 +0200)
src/gallium/drivers/nv50/nv50_miptree.c

index 115a98dcda42881f1f58f51bfbdec58897f0cb34..bc81604508b3a92cc62b3d2daabef0695fdd8e5a 100644 (file)
@@ -409,7 +409,9 @@ nv50_miptree_surface_new(struct pipe_context *pipe,
       if (mt->layout_3d) {
          ns->offset += nv50_mt_zslice_offset(mt, l, z);
 
-         if (z & (NV50_TILE_SIZE_Z(mt->level[l].tile_mode) - 1))
+         /* TODO: switch to depth 1 tiles; but actually this shouldn't happen */
+         if (ns->depth > 1 &&
+             (z & (NV50_TILE_SIZE_Z(mt->level[l].tile_mode) - 1)))
             NOUVEAU_ERR("Creating unsupported 3D surface !\n");
       } else {
          ns->offset += mt->layer_stride * z;