Lines Matching refs:blitRegion
1218 VkImageBlit blitRegion; in onRegenerateMipMapLevels() local
1219 memset(&blitRegion, 0, sizeof(VkImageBlit)); in onRegenerateMipMapLevels()
1257 blitRegion.srcSubresource = { VK_IMAGE_ASPECT_COLOR_BIT, mipLevel - 1, 0, 1 }; in onRegenerateMipMapLevels()
1258 blitRegion.srcOffsets[0] = { 0, 0, 0 }; in onRegenerateMipMapLevels()
1259 blitRegion.srcOffsets[1] = { prevWidth, prevHeight, 1 }; in onRegenerateMipMapLevels()
1260 blitRegion.dstSubresource = { VK_IMAGE_ASPECT_COLOR_BIT, mipLevel, 0, 1 }; in onRegenerateMipMapLevels()
1261 blitRegion.dstOffsets[0] = { 0, 0, 0 }; in onRegenerateMipMapLevels()
1262 blitRegion.dstOffsets[1] = { width, height, 1 }; in onRegenerateMipMapLevels()
1271 &blitRegion, in onRegenerateMipMapLevels()
1929 VkImageBlit blitRegion; in copySurfaceAsBlit() local
1930 memset(&blitRegion, 0, sizeof(VkImageBlit)); in copySurfaceAsBlit()
1931 blitRegion.srcSubresource = { VK_IMAGE_ASPECT_COLOR_BIT, 0, 0, 1 }; in copySurfaceAsBlit()
1932 blitRegion.srcOffsets[0] = { srcVkRect.fLeft, srcVkRect.fTop, 0 }; in copySurfaceAsBlit()
1933 blitRegion.srcOffsets[1] = { srcVkRect.fRight, srcVkRect.fBottom, 1 }; in copySurfaceAsBlit()
1934 blitRegion.dstSubresource = { VK_IMAGE_ASPECT_COLOR_BIT, 0, 0, 1 }; in copySurfaceAsBlit()
1935 blitRegion.dstOffsets[0] = { dstRect.fLeft, dstRect.fTop, 0 }; in copySurfaceAsBlit()
1936 blitRegion.dstOffsets[1] = { dstRect.fRight, dstRect.fBottom, 1 }; in copySurfaceAsBlit()
1942 &blitRegion, in copySurfaceAsBlit()