Lines Matching refs:dstb
1491 struct NineBaseTexture9 *dstb = NineBaseTexture9(pDestinationTexture);
1503 user_assert(dstb->base.pool == D3DPOOL_DEFAULT, D3DERR_INVALIDCALL);
1505 user_assert(dstb->base.type == srcb->base.type, D3DERR_INVALIDCALL);
1507 dstb->base.usage & D3DUSAGE_AUTOGENMIPMAP, D3DERR_INVALIDCALL);
1534 last_dst_level = dstb->level_count-1;
1541 if (w <= dstb->base.info.width0 &&
1542 h <= dstb->base.info.height0 &&
1543 d <= dstb->base.info.depth0)
1550 if (dstb->base.type == D3DRTYPE_TEXTURE) {
1551 struct NineTexture9 *dst = NineTexture9(dstb);
1574 if (dstb->base.type == D3DRTYPE_CUBETEXTURE) {
1575 struct NineCubeTexture9 *dst = NineCubeTexture9(dstb);
1603 if (dstb->base.type == D3DRTYPE_VOLUMETEXTURE) {
1604 struct NineVolumeTexture9 *dst = NineVolumeTexture9(dstb);
1617 if (dstb->base.usage & D3DUSAGE_AUTOGENMIPMAP) {
1618 dstb->dirty_mip = TRUE;
1619 NineBaseTexture9_GenerateMipSubLevels(dstb);