nv10: there are no 3D textures.

This commit is contained in:
Stephane Marchesin 2008-07-08 01:34:36 +02:00
parent fec4e427f8
commit 205101dafb

View file

@ -11,7 +11,7 @@ nv10_miptree_layout(struct nv10_miptree *nv10mt)
{ {
struct pipe_texture *pt = &nv10mt->base; struct pipe_texture *pt = &nv10mt->base;
boolean swizzled = FALSE; boolean swizzled = FALSE;
uint width = pt->width[0], height = pt->height[0], depth = pt->depth[0]; uint width = pt->width[0], height = pt->height[0];
uint offset = 0; uint offset = 0;
int nr_faces, l, f; int nr_faces, l, f;
@ -24,7 +24,6 @@ nv10_miptree_layout(struct nv10_miptree *nv10mt)
for (l = 0; l <= pt->last_level; l++) { for (l = 0; l <= pt->last_level; l++) {
pt->width[l] = width; pt->width[l] = width;
pt->height[l] = height; pt->height[l] = height;
pt->depth[l] = depth;
pt->nblocksx[l] = pf_get_nblocksx(&pt->block, width); pt->nblocksx[l] = pf_get_nblocksx(&pt->block, width);
pt->nblocksy[l] = pf_get_nblocksy(&pt->block, height); pt->nblocksy[l] = pf_get_nblocksy(&pt->block, height);
@ -39,7 +38,6 @@ nv10_miptree_layout(struct nv10_miptree *nv10mt)
width = MAX2(1, width >> 1); width = MAX2(1, width >> 1);
height = MAX2(1, height >> 1); height = MAX2(1, height >> 1);
depth = MAX2(1, depth >> 1);
} }