Lines Matching refs:blitRegion
1210 VkImageBlit blitRegion; in onRegenerateMipMapLevels() local
1211 memset(&blitRegion, 0, sizeof(VkImageBlit)); in onRegenerateMipMapLevels()
1249 blitRegion.srcSubresource = { VK_IMAGE_ASPECT_COLOR_BIT, mipLevel - 1, 0, 1 }; in onRegenerateMipMapLevels()
1250 blitRegion.srcOffsets[0] = { 0, 0, 0 }; in onRegenerateMipMapLevels()
1251 blitRegion.srcOffsets[1] = { prevWidth, prevHeight, 1 }; in onRegenerateMipMapLevels()
1252 blitRegion.dstSubresource = { VK_IMAGE_ASPECT_COLOR_BIT, mipLevel, 0, 1 }; in onRegenerateMipMapLevels()
1253 blitRegion.dstOffsets[0] = { 0, 0, 0 }; in onRegenerateMipMapLevels()
1254 blitRegion.dstOffsets[1] = { width, height, 1 }; in onRegenerateMipMapLevels()
1263 &blitRegion, in onRegenerateMipMapLevels()
1921 VkImageBlit blitRegion; in copySurfaceAsBlit() local
1922 memset(&blitRegion, 0, sizeof(VkImageBlit)); in copySurfaceAsBlit()
1923 blitRegion.srcSubresource = { VK_IMAGE_ASPECT_COLOR_BIT, 0, 0, 1 }; in copySurfaceAsBlit()
1924 blitRegion.srcOffsets[0] = { srcVkRect.fLeft, srcVkRect.fTop, 0 }; in copySurfaceAsBlit()
1925 blitRegion.srcOffsets[1] = { srcVkRect.fRight, srcVkRect.fBottom, 1 }; in copySurfaceAsBlit()
1926 blitRegion.dstSubresource = { VK_IMAGE_ASPECT_COLOR_BIT, 0, 0, 1 }; in copySurfaceAsBlit()
1927 blitRegion.dstOffsets[0] = { dstRect.fLeft, dstRect.fTop, 0 }; in copySurfaceAsBlit()
1928 blitRegion.dstOffsets[1] = { dstRect.fRight, dstRect.fBottom, 1 }; in copySurfaceAsBlit()
1934 &blitRegion, in copySurfaceAsBlit()