Lines Matching refs:blitRegion
1564 VkImageBlit blitRegion;
1565 memset(&blitRegion, 0, sizeof(VkImageBlit));
1602 blitRegion.srcSubresource = { VK_IMAGE_ASPECT_COLOR_BIT, mipLevel - 1, 0, 1 };
1603 blitRegion.srcOffsets[0] = { 0, 0, 0 };
1604 blitRegion.srcOffsets[1] = { prevWidth, prevHeight, 1 };
1605 blitRegion.dstSubresource = { VK_IMAGE_ASPECT_COLOR_BIT, mipLevel, 0, 1 };
1606 blitRegion.dstOffsets[0] = { 0, 0, 0 };
1607 blitRegion.dstOffsets[1] = { width, height, 1 };
1616 &blitRegion,
2399 VkImageBlit blitRegion;
2400 memset(&blitRegion, 0, sizeof(VkImageBlit));
2401 blitRegion.srcSubresource = { VK_IMAGE_ASPECT_COLOR_BIT, 0, 0, 1 };
2402 blitRegion.srcOffsets[0] = { srcRect.fLeft, srcRect.fTop, 0 };
2403 blitRegion.srcOffsets[1] = { srcRect.fRight, srcRect.fBottom, 1 };
2404 blitRegion.dstSubresource = { VK_IMAGE_ASPECT_COLOR_BIT, 0, 0, 1 };
2405 blitRegion.dstOffsets[0] = { dstRect.fLeft, dstRect.fTop, 0 };
2406 blitRegion.dstOffsets[1] = { dstRect.fRight, dstRect.fBottom, 1 };
2414 &blitRegion,