Lines Matching defs:loc
354 D3D12_TEXTURE_COPY_LOCATION loc = {
363 loc.Type = D3D12_TEXTURE_COPY_TYPE_PLACED_FOOTPRINT;
364 loc.PlacedFootprint.Offset = 0;
365 loc.PlacedFootprint.Footprint.Format =
367 loc.PlacedFootprint.Footprint.Width = image->vk.extent.width;
368 loc.PlacedFootprint.Footprint.Height = image->vk.extent.height;
369 loc.PlacedFootprint.Footprint.Depth = image->vk.extent.depth;
370 loc.PlacedFootprint.Footprint.RowPitch = image->linear.row_stride;
372 loc.Type = D3D12_TEXTURE_COPY_TYPE_SUBRESOURCE_INDEX;
373 loc.SubresourceIndex = dzn_image_layers_get_subresource_index(image, subres, aspect, layer);
376 return loc;