Lines Matching defs:image
101 // resolve multisample rendering to single sampled image
137 deUint32 getUniqueColorsCount (const tcu::ConstPixelBufferAccess& image);
1125 deUint32 getUniqueColorsCount (const tcu::ConstPixelBufferAccess& image)
1127 DE_ASSERT(image.getFormat().getPixelSize() == 4);
1130 const deUint32 pixelCount = image.getWidth() * image.getHeight() * image.getDepth();
1134 const deUint32 pixelValue = *((const deUint32*)image.getDataPtr() + pixelNdx);
2228 testLog << tcu::TestLog::Image("sampleShadedImage", "One sample of sample shaded image", sampleShadedImages[sampleId].getAccess());
2604 return tcu::TestStatus::pass("Image rendered with alpha-to-one contains pixels of image rendered with no alpha-to-one");
2770 // Log result image when failing.
2771 m_context.getTestContext().getLog() << tcu::TestLog::ImageSet("Result", "Result image") << tcu::TestLog::Image("Rendered", "Rendered image", result) << tcu::TestLog::EndImageSet;
2829 // Log result image when failing.
2830 m_context.getTestContext().getLog() << tcu::TestLog::ImageSet("Result", "Result image") << tcu::TestLog::Image("Rendered", "Rendered image", result) << tcu::TestLog::EndImageSet;
2988 log << tcu::TestLog::ImageSet("Per sample image", "Per sampe image")
3505 // Create color image
3531 TCU_THROW(NotSupportedError, "The image format does not support sparse operations.");
3536 // Allocate and bind color image memory
3550 // Create resolve image
3575 // Allocate and bind resolve image memory
3586 *m_resolveImage, // VkImage image;
3625 PerSampleImage& image = *m_perSampleImages[i];
3627 image.m_image = createImage(vk, vkDevice, &perSampleImageParams);
3629 // Allocate and bind image memory
3630 image.m_imageAlloc = memAlloc.allocate(getImageMemoryRequirements(vk, vkDevice, *image.m_image), MemoryRequirement::Any);
3631 VK_CHECK(vk.bindImageMemory(vkDevice, *image.m_image, image.m_imageAlloc->getMemory(), image.m_imageAlloc->getOffset()));
3640 *image.m_image, // VkImage image;
3647 image.m_attachmentView = createImageView(vk, vkDevice, &perSampleAttachmentViewParams);
3652 // Create a depth/stencil image
3676 // Allocate and bind depth/stencil image memory
3688 *m_colorImage, // VkImage image;
3710 *m_depthStencilImage, // VkImage image;
4492 // color attachment image
4502 *m_colorImage, // VkImage image;
4510 // resolve attachment image
4520 *m_resolveImage, // VkImage image;
4530 // resolve attachment image
4540 *m_perSampleImages[i]->m_image, // VkImage image;
4549 // depth/stencil attachment image
4559 *m_depthStencilImage, // VkImage image;
4597 // Copy each sample id to single sampled image
6441 // Sampling from a multisampled image texture (texelFetch)
6444 // Load/store on a multisampled rendered image (different kinds of access: color attachment write, storage image, etc.)
6447 // Sampling from a multisampled image texture (texelFetch), checking supersample positions