Lines Matching refs:srcb
1516 struct NineBaseTexture9 *srcb = NineBaseTexture9(pSourceTexture); in NineDevice9_UpdateTexture() local
1528 user_assert(srcb->base.pool == D3DPOOL_SYSTEMMEM, D3DERR_INVALIDCALL); in NineDevice9_UpdateTexture()
1529 user_assert(dstb->base.type == srcb->base.type, D3DERR_INVALIDCALL); in NineDevice9_UpdateTexture()
1530 user_assert(!(srcb->base.usage & D3DUSAGE_AUTOGENMIPMAP) || in NineDevice9_UpdateTexture()
1557 last_src_level = srcb->level_count-1; in NineDevice9_UpdateTexture()
1561 unsigned w = u_minify(srcb->base.info.width0, m); in NineDevice9_UpdateTexture()
1562 unsigned h = u_minify(srcb->base.info.height0, m); in NineDevice9_UpdateTexture()
1563 unsigned d = u_minify(srcb->base.info.depth0, m); in NineDevice9_UpdateTexture()
1572 last_dst_level = MIN2(srcb->base.info.last_level - m, last_dst_level); in NineDevice9_UpdateTexture()
1576 struct NineTexture9 *src = NineTexture9(srcb); in NineDevice9_UpdateTexture()
1600 struct NineCubeTexture9 *src = NineCubeTexture9(srcb); in NineDevice9_UpdateTexture()
1629 struct NineVolumeTexture9 *src = NineVolumeTexture9(srcb); in NineDevice9_UpdateTexture()