Lines Matching refs:footprint
334 D3D12_SUBRESOURCE_FOOTPRINT *footprint = &placed_footprint.Footprint;
337 assert(plane_res->base.b.width0 == footprint->Width);
338 assert(plane_res->base.b.height0 == footprint->Height);
339 assert(plane_res->base.b.depth0 == footprint->Depth);
463 D3D12_SUBRESOURCE_FOOTPRINT *footprint = &placed_footprint.Footprint;
485 footprint->Format = incoming_res_desc.Format;
486 footprint->Width = incoming_res_desc.Width;
487 footprint->Height = incoming_res_desc.Height;
488 footprint->Depth = incoming_res_desc.DepthOrArraySize;
491 if (footprint->Width > UINT32_MAX ||
492 footprint->Height > UINT16_MAX) {
520 res->base.b.depth0 = footprint->Depth;
552 footprint->Width != templ->width0 ||
553 footprint->Height != templ->height0 ||
554 footprint->Depth != templ->depth0 ||
563 footprint->Width, templ->width0,
564 footprint->Height, templ->height0,
565 footprint->Depth, templ->depth0,
572 if ((footprint->Format != d3d12_get_format(templ->format) &&
573 footprint->Format != d3d12_get_typeless_format(templ->format)) ||
581 footprint->Format,
978 D3D12_PLACED_SUBRESOURCE_FOOTPRINT footprint;
985 dev->GetCopyableFootprints(&descr, sub_resid, 1, 0, &footprint, nullptr, nullptr, nullptr);
989 buf_loc.PlacedFootprint = footprint;