Home
last modified time | relevance | path

Searched refs:mapVkFormat (Results 1 – 25 of 194) sorted by relevance

12345678

/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/draw/
DvktDrawImageObjectUtil.cpp177 m_pixelAccessData.resize(width * height * vk::mapVkFormat(m_format).getPixelSize()); in readSurface()
188 …return tcu::ConstPixelBufferAccess(vk::mapVkFormat(m_format), width, height, 1, m_pixelAccessData.… in readSurface()
221 m_pixelAccessData.resize(width * height * depth * vk::mapVkFormat(m_format).getPixelSize()); in readVolume()
232 …return tcu::ConstPixelBufferAccess(vk::mapVkFormat(m_format), width, height, depth, m_pixelAccessD… in readVolume()
244 m_pixelAccessData.resize(width * vk::mapVkFormat(m_format).getPixelSize()); in readSurface1D()
256 …return tcu::ConstPixelBufferAccess(vk::mapVkFormat(m_format), width, 1, 1, m_pixelAccessData.data(… in readSurface1D()
296 bool isCombinedType = isCombinedDepthStencilType(vk::mapVkFormat(m_format).type); in readUsingBuffer()
300 bufferSize = vk::mapVkFormat(m_format).getPixelSize() * width * height * depth; in readUsingBuffer()
422 m_pixelAccessData.resize(width * height * vk::mapVkFormat(m_format).getPixelSize()); in readSurfaceLinear()
424 …return tcu::ConstPixelBufferAccess(vk::mapVkFormat(m_format), width, height, 1, m_pixelAccessData.… in readSurfaceLinear()
[all …]
DvktDrawShaderLayerTests.cpp781 …colorBufferSize = renderSize.x() * renderSize.y() * tcu::getPixelSize(mapVkFormat(colorFormat)) *… in testVertexShader()
812 …const tcu::ConstPixelBufferAccess resultImage (mapVkFormat(colorFormat), renderSize.x(), renderSi… in testVertexShader()
813 …const tcu::TextureLevel referenceImage = generateReferenceImage(mapVkFormat(colorFormat), rende… in testVertexShader()
841 …colorBufferSize = renderSize.x() * renderSize.y() * tcu::getPixelSize(mapVkFormat(colorFormat)) *… in testTessellationShader()
871 …const tcu::ConstPixelBufferAccess resultImage (mapVkFormat(colorFormat), renderSize.x(), renderSi… in testTessellationShader()
872 …const tcu::TextureLevel referenceImage = generateReferenceImage(mapVkFormat(colorFormat), rende… in testTessellationShader()
DvktDrawShaderViewportIndexTests.cpp841 … colorBufferSize = renderSize.x() * renderSize.y() * tcu::getPixelSize(mapVkFormat(colorFormat)); in testVertexFragmentShader()
869 …const tcu::ConstPixelBufferAccess resultImage (mapVkFormat(colorFormat), renderSize.x(), renderSi… in testVertexFragmentShader()
870 …const tcu::TextureLevel referenceImage = generateReferenceImage(mapVkFormat(colorFormat), rende… in testVertexFragmentShader()
902 … colorBufferSize = renderSize.x() * renderSize.y() * tcu::getPixelSize(mapVkFormat(colorFormat)); in testTessellationShader()
930 …const tcu::ConstPixelBufferAccess resultImage (mapVkFormat(colorFormat), renderSize.x(), renderSi… in testTessellationShader()
931 …const tcu::TextureLevel referenceImage = generateReferenceImage(mapVkFormat(colorFormat), rende… in testTessellationShader()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/image/
DvktImageLoadStoreTests.cpp71 const tcu::TextureFormat texFormat = mapVkFormat(format); in formatHasThreeComponents()
77 tcu::TextureFormat texFormat = mapVkFormat(format); in getSingleComponentFormat()
117 return tcu::getPixelSize(vk::mapVkFormat(format)) * size.x() * size.y() * size.z(); in getMipmapLevelImageSizeBytes()
162 switch (tcu::getTextureChannelClass(mapVkFormat(format).type)) in comparePixelBuffers()
174 …hold (1.0f / ((tcu::UVec4(1u) << tcu::getTextureFormatMantissaBitDepth(mapVkFormat(format)).cast<d… in comparePixelBuffers()
183 …old (1.0f / ((tcu::UVec4(1u) << (tcu::getTextureFormatMantissaBitDepth(mapVkFormat(format)).cast<d… in comparePixelBuffers()
192 …::UVec4(1u) << (tcu::UVec4(23) - tcu::getTextureFormatMantissaBitDepth(mapVkFormat(format)).cast<d… in comparePixelBuffers()
269 tcu::TextureLevel reference(mapVkFormat(imageFormat), imageSize.x(), imageSize.y(), imageSize.z()); in generateReferenceImage()
298 …replaceBadFloatReinterpretValues(tcu::PixelBufferAccess(mapVkFormat(readFormat), imageSize, access… in generateReferenceImage()
300 …replaceSnormReinterpretValues(tcu::PixelBufferAccess(mapVkFormat(readFormat), imageSize, access.ge… in generateReferenceImage()
[all …]
DvktImageMismatchedWriteOpTests.cpp255 , m_texFormat (mapVkFormat(m_vkFormat)) in StorageImage2D()
295 allocator, m_allocations, mapVkFormat(m_vkFormat), *m_image ); in StorageImage2D()
502 if (getTextureChannelClass(mapVkFormat(f).type) == channelClass) in findFormatsByChannelClass()
574 const TextureFormat texFormat = mapVkFormat(m_params->vkFormat); in getBufferFormat()
788 const auto channelClass = tcu::getTextureChannelClass(mapVkFormat(m_params->vkFormat).type); in clear()
806 const auto texFormat = mapVkFormat(m_params->vkFormat); in populate()
956 const tcu::TextureFormat texFormat = mapVkFormat(m_params->vkFormat); in compare()
1014 const auto switchClass = getTextureChannelClass(mapVkFormat(f).type); in createImageWriteOpTests()
DvktImageTestsUtil.cpp277 …const deUint32 vertexSizePosition = tcu::getPixelSize(mapVkFormat(vertexFormatPosition… in makeGraphicsPipeline()
782 const tcu::TextureFormat textureFormat = mapVkFormat(format); in getGlslAttachmentType()
806 const tcu::TextureFormat textureFormat = mapVkFormat(format); in getGlslInputAttachmentType()
830 const tcu::TextureFormat textureFormat = mapVkFormat(format); in isPackedType()
867 const tcu::TextureFormat textureFormat = mapVkFormat(format); in isComponentSwizzled()
891 const tcu::TextureFormat textureFormat = mapVkFormat(format); in getNumUsedChannels()
DvktImageMutableTests.cpp181 tcuFormat = mapVkFormat(format); in getClearValueInt()
280 if (isSRGB(mapVkFormat(caseDef.imageFormat))) in isSRGBConversionRequired()
288 if (isSRGB(mapVkFormat(caseDef.viewFormat))) in isSRGBConversionRequired()
302 …return format0 == format1 || mapVkFormat(format0).getPixelSize() == mapVkFormat(format1).getPixelS… in formatsAreCompatible()
369 const int numComponents = getNumUsedChannels(mapVkFormat(caseDef.viewFormat).order); in initPrograms()
395 const TextureFormat tcuFormat = mapVkFormat(caseDef.viewFormat); in initPrograms()
445 const TextureFormat tcuFormat = mapVkFormat(caseDef.viewFormat); in initPrograms()
477 const TextureFormat tcuFormat = mapVkFormat(caseDef.viewFormat); in initPrograms()
1212 const VkDeviceSize pixelSize = tcu::getPixelSize(mapVkFormat(m_caseDef.imageFormat)); in uploadCopy()
1220 const tcu::TextureFormat tcuFormat = mapVkFormat(m_caseDef.imageFormat); in uploadCopy()
[all …]
DvktImageMultisampleLoadStoreTests.cpp86 const std::string formatQualifierStr = getShaderImageFormatQualifier(mapVkFormat(caseDef.format)); in initPrograms()
87 …const std::string msImageTypeStr = getShaderImageType(mapVkFormat(caseDef.format), usedImageType,… in initPrograms()
93 const int numColorComponents = tcu::getNumUsedChannels(mapVkFormat(caseDef.format).order); in initPrograms()
139 const tcu::TextureFormat checksumFormat = mapVkFormat(CHECKSUM_IMAGE_FORMAT); in initPrograms()
DvktImageMisalignedCubeTests.cpp85 const tcu::TextureFormat textureFormat = mapVkFormat(format); in fillBuffer()
163 const deUint32 pixelSize = static_cast<deUint32>(tcu::getPixelSize(mapVkFormat(m_format))); in iterate()
313 const std::string formatQualifierStr = getShaderImageFormatQualifier(mapVkFormat(m_format)); in initPrograms()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/memory/
DvktMemoryExternalMemoryHostTests.cpp403 …tcu::ConstPixelBufferAccess result(mapVkFormat(m_testParams.m_format), tcu::IVec3(100,100,1), m… in iterate()
406 …tcu::PixelBufferAccess reference(mapVkFormat(m_testParams.m_format), tcu::IVec3(100, 100, 1), … in iterate()
515 VkDeviceSize size = 10000 * vk::mapVkFormat(m_testParams.m_format).getPixelSize(); in createBindMemoryResultBuffer()
791 …const VkDeviceSize dataBufferSize = 10000 * vk::mapVkFormat(m_testParams.m_format).get… in iterate()
860 …tcu::PixelBufferAccess bufferSurface(mapVkFormat(m_testParams.m_format), 100, 100, 1, (100 * vk::m… in iterate()
873 …tcu::ConstPixelBufferAccess result(mapVkFormat(m_testParams.m_format), tcu::IVec3(100, 100, 1),… in iterate()
876 …tcu::PixelBufferAccess reference(mapVkFormat(m_testParams.m_format), tcu::IVec3(100, 100, 1), … in iterate()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/texture/
DvktTextureFilteringAnisotropyTests.cpp88 m_refParams.samplerType = getSamplerType(vk::mapVkFormat(VK_FORMAT_R8G8B8A8_UNORM)); in FilteringAnisotropyInstance()
111 …texture = TestTexture2DSp(new pipeline::TestTexture2D(vk::mapVkFormat(VK_FORMAT_R8G8B8A8_UNORM)… in iterate()
117 …texture = TestTexture2DSp(new pipeline::TestTexture2D(vk::mapVkFormat(VK_FORMAT_R8G8B8A8_UNORM), A… in iterate()
DvktTextureFilteringTests.cpp205 const tcu::TextureFormat texFormat = vk::mapVkFormat(m_testParameters.format); in Texture2DFilteringTestInstance()
210 const tcu::TextureFormat texFormatStencil = vk::mapVkFormat(VK_FORMAT_S8_UINT); in Texture2DFilteringTestInstance()
225 …m_textures.push_back(TestTexture2DSp(new pipeline::TestTexture2D(vk::mapVkFormat(m_testParameters.… in Texture2DFilteringTestInstance()
227 …m_textures.push_back(TestTexture2DSp(new pipeline::TestTexture2D(vk::mapVkFormat(m_testParameters.… in Texture2DFilteringTestInstance()
330 …const tcu::IVec4 formatBitDepth = getTextureFormatBitDepth(vk::mapVkFormat(VK_FORMAT_R8G8B8A8_UNO… in iterate()
421 const tcu::TextureFormat texFormat = vk::mapVkFormat(m_testParameters.format); in TextureCubeFilteringTestInstance()
426 const tcu::TextureFormat texFormatStencil = vk::mapVkFormat(VK_FORMAT_S8_UINT); in TextureCubeFilteringTestInstance()
439 …m_textures.push_back(TestTextureCubeSp(new pipeline::TestTextureCube(vk::mapVkFormat(m_testParamet… in TextureCubeFilteringTestInstance()
573 …const tcu::IVec4 formatBitDepth = getTextureFormatBitDepth(vk::mapVkFormat(VK_FORMAT_R8G8B8A8_UNO… in iterate()
664 const tcu::TextureFormat texFormat = vk::mapVkFormat(m_testParameters.format); in Texture2DArrayFilteringTestInstance()
[all …]
DvktTextureShadowTests.cpp270 …m_textures.push_back(TestTexture2DSp(new pipeline::TestTexture2D(vk::mapVkFormat(m_testParameters.… in Texture2DShadowTestInstance()
378 const tcu::PixelFormat pixelFormat = getPixelFormat(vk::mapVkFormat(VK_FORMAT_R8G8B8A8_UNORM)); in iterate()
478 …const tcu::TextureFormatInfo fmtInfo = tcu::getTextureFormatInfo(vk::mapVkFormat(m_testParameters… in TextureCubeShadowTestInstance()
487 …m_textures.push_back(TestTextureCubeSp(new pipeline::TestTextureCube(vk::mapVkFormat(m_testParamet… in TextureCubeShadowTestInstance()
603 … const tcu::PixelFormat pixelFormat = getPixelFormat(vk::mapVkFormat(VK_FORMAT_R8G8B8A8_UNORM)); in iterate()
704 …const tcu::TextureFormatInfo fmtInfo = tcu::getTextureFormatInfo(vk::mapVkFormat(m_testParameters… in Texture2DArrayShadowTestInstance()
712 …m_textures.push_back(TestTexture2DArraySp(new pipeline::TestTexture2DArray(vk::mapVkFormat(m_testP… in Texture2DArrayShadowTestInstance()
822 const tcu::PixelFormat pixelFormat = getPixelFormat(vk::mapVkFormat(VK_FORMAT_R8G8B8A8_UNORM)); in iterate()
928 …m_textures.push_back(TestTexture1DSp(new pipeline::TestTexture1D(vk::mapVkFormat(m_testParameters.… in Texture1DShadowTestInstance()
1033 const tcu::PixelFormat pixelFormat = getPixelFormat(vk::mapVkFormat(VK_FORMAT_R8G8B8A8_UNORM)); in iterate()
[all …]
DvktTextureFilteringExplicitLodTests.cpp77 const tcu::TextureFormat tcuFormat = mapVkFormat(format); in getPrecision()
296 getPixelSize(mapVkFormat(imParams.format)) in initializeImage()
333 getPixelSize(mapVkFormat(imParams.format)) in initializeImage()
617 const tcu::TextureFormat tcuFormat = mapVkFormat(m_imParams.format); in verify()
1263 mapVkFormat(formats[formatNdx]), in create2DFormatTests()
1278 mapVkFormat(formats[formatNdx]), in create2DFormatTests()
1370 mapVkFormat(format), in create2DDerivTests()
1498 mapVkFormat(VK_FORMAT_R8G8B8A8_UNORM), in create2DSizeTests()
DvktTextureMipmapTests.cpp174 …m_texture = TestTexture2DSp(new pipeline::TestTexture2D(vk::mapVkFormat(m_testParameters.format), … in Texture2DMipmapTestInstance()
282 refParams.samplerType = getSamplerType(vk::mapVkFormat(m_testParameters.format)); in iterate()
332 …const tcu::IVec4 formatBitDepth = getTextureFormatBitDepth(vk::mapVkFormat(VK_FORMAT_R8G8B8A8_UNO… in iterate()
435 …m_texture = TestTextureCubeSp(new pipeline::TestTextureCube(vk::mapVkFormat(m_testParameters.forma… in TextureCubeMipmapTestInstance()
515 refParams.samplerType = getSamplerType(vk::mapVkFormat(m_testParameters.format)); in iterate()
566 …const tcu::IVec4 formatBitDepth = getTextureFormatBitDepth(vk::mapVkFormat(VK_FORMAT_R8G8B8A8_UN… in iterate()
674 const tcu::TextureFormat& texFmt = mapVkFormat(testParameters.format); in Texture3DMipmapTestInstance()
680 …m_texture = TestTexture3DSp(new pipeline::TestTexture3D(vk::mapVkFormat(m_testParameters.format), … in Texture3DMipmapTestInstance()
846 …const tcu::IVec4 formatBitDepth = getTextureFormatBitDepth(vk::mapVkFormat(VK_FORMAT_R8G8B8A8_UNO… in iterate()
960 …m_texture = TestTexture2DSp(new pipeline::TestTexture2D(vk::mapVkFormat(format), m_texWidth, m_tex… in Texture2DLodControlTestInstance()
[all …]
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/renderpass/
DvktRenderPassMultisampleTests.cpp115 const tcu::TextureFormat format (mapVkFormat(vkFormat)); in getImageAspectFlags()
243 const tcu::TextureFormat format (mapVkFormat(vkFormat)); in createImage()
397 const tcu::TextureFormat format (mapVkFormat(vkFormat)); in getPixelSize()
544 const tcu::TextureFormat format (mapVkFormat(srcFormat)); in createRenderPass()
851 const tcu::TextureFormat format (mapVkFormat(srcFormat)); in createRenderPipeline()
967 const tcu::TextureFormat format (mapVkFormat(vkFormat)); in createSplitDescriptorSetLayout()
1245 const tcu::TextureFormat format (mapVkFormat(vkFormat)); in getSrcImageUsage()
1257 const tcu::TextureFormat format (mapVkFormat(vkFormat)); in getDstFormat()
1434 if (tcu::hasStencilComponent(mapVkFormat(m_srcFormat).order)) in iterateInternal()
1485 const tcu::TextureFormat format (mapVkFormat(m_dstFormat)); in iterateInternal()
[all …]
DvktRenderPassTests.cpp452 const tcu::TextureFormat format = mapVkFormat(vkFormat); in getImageAspectFlags()
972 const tcu::TextureFormat format = mapVkFormat(vkFormat); in clearColorToString()
1035 const tcu::TextureFormat format = mapVkFormat(vkFormat); in clearValueToString()
1063 const tcu::TextureFormat format = mapVkFormat(attachment.getFormat()); in randomColorClearValue()
1316 const tcu::TextureFormat textureFormat = mapVkFormat(format); in createAttachmentImage()
1318 …DE_ASSERT(!(tcu::hasDepthComponent(vk::mapVkFormat(format).order) || tcu::hasStencilComponent(vk:: in createAttachmentImage()
1321 …DE_ASSERT((tcu::hasDepthComponent(vk::mapVkFormat(format).order) || tcu::hasStencilComponent(vk::m… in createAttachmentImage()
1383 const tcu::TextureFormat format = mapVkFormat(attachment.getFormat()); in randomClearValue()
1429 const tcu::TextureFormat format = mapVkFormat(attachmentInfo.getFormat()); in AttachmentResources()
2126 const tcu::TextureFormat format = mapVkFormat(attachmentInfo.getFormat()); in SubpassRenderer()
[all …]
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/fragment_ops/
DvktFragmentOperationsEarlyFragmentTests.cpp181 const tcu::TextureFormat tcuFormat = mapVkFormat(format); in getImageAspectFlags()
393 …const VkDeviceSize colorBufferSizeBytes = tcu::getPixelSize(mapVkFormat(colorFormat)) * renderS… in iterate()
478 …const tcu::ConstPixelBufferAccess imagePixelAccess(mapVkFormat(colorFormat), renderSize.x(), rende… in iterate()
641 …const VkDeviceSize colorBufferSizeBytes = tcu::getPixelSize(mapVkFormat(colorFormat)) * renderS… in iterate()
647 …const VkDeviceSize dsBufferSizeBytes = tcu::getPixelSize(mapVkFormat(depthStencilFormat)) * ren… in iterate()
735 …const tcu::ConstPixelBufferAccess imagePixelAccess(mapVkFormat(colorFormat), renderSize.x(), rende… in iterate()
736 …const tcu::TextureLevel referenceImage = generateReferenceColorImage(mapVkFormat(colorFormat), … in iterate()
745 …tcu::TextureFormat format = vk::mapVkFormat(m_testMode == MODE_STENCIL ? VK_FORMAT_S8_UINT : depth… in iterate()
1331 …const VkDeviceSize colorBufferSizeBytes = tcu::getPixelSize(mapVkFormat(colorFormat)) * renderS… in iterate()
1337 …const VkDeviceSize dsBufferSizeBytes = tcu::getPixelSize(mapVkFormat(depthStencilFormat)) * ren… in iterate()
[all …]
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/robustness/
DvktRobustnessVertexAccessTests.cpp266 const int numChannels = getNumUsedChannels(mapVkFormat(m_inputFormat).order); in initPrograms()
422 …getNumUsedChannels(mapVkFormat(inputFormat).order) * (deUint32)s_indexConfigs[indexConfig].size() … in DrawIndexedAccessTest()
423 getNumUsedChannels(mapVkFormat(inputFormat).order), // numInstanceValues in DrawIndexedAccessTest()
466 const deUint32 formatSizeInBytes = tcu::getPixelSize(mapVkFormat(m_inputFormat)); in VertexAccessInstance()
644 const int numChannels = getNumUsedChannels(mapVkFormat(m_inputFormat).order); in VertexAccessInstance()
794 const deUint32 numChannels = getNumUsedChannels(mapVkFormat(m_inputFormat).order); in verifyResult()
1125 const deUint32 numChannels = getNumUsedChannels(mapVkFormat(format).order); in createDrawTests()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/pipeline/
DvktPipelineRenderToImageTests.cpp813 const tcu::TextureFormat::ChannelOrder order = mapVkFormat(format).order; in getFormatAspectFlags()
826 const int numComponents = getNumUsedChannels(mapVkFormat(caseDef.colorFormat).order); in initPrograms()
894 …VkDeviceSize colorSize = product(imageSize) * tcu::getPixelSize(mapVkFormat(caseDef.colorFor… in testWithSizeReduction()
895 …tencilSize = (useDepthStencil ? product(imageSize) * tcu::getPixelSize(mapVkFormat(caseDef.depthSt… in testWithSizeReduction()
917 colorSize = product(imageSize) * tcu::getPixelSize(mapVkFormat(caseDef.colorFormat)); in testWithSizeReduction()
918 …depthStencilSize = (useDepthStencil ? product(imageSize) * tcu::getPixelSize(mapVkFormat(caseDef.d… in testWithSizeReduction()
943 colorSize = product(imageSize) * tcu::getPixelSize(mapVkFormat(caseDef.colorFormat)); in testWithSizeReduction()
944 …depthStencilSize = (useDepthStencil ? product(imageSize) * tcu::getPixelSize(mapVkFormat(caseDef.d… in testWithSizeReduction()
973 …const VkDeviceSize colorBufferSize = product(checkSize) * tcu::getPixelSize(mapVkFormat(caseDe… in testWithSizeReduction()
1200 const tcu::TextureFormat format = mapVkFormat(caseDef.colorFormat); in testWithSizeReduction()
[all …]
DvktPipelineStencilTests.cpp424 …const VkImageAspectFlags aspect = (mapVkFormat(m_stencilFormat).order == tcu::TextureFormat::DS ? … in StencilTestInstance()
551 const bool isDepthEnabled = (vk::mapVkFormat(m_stencilFormat).order != tcu::TextureFormat::S); in StencilTestInstance()
749 const tcu::TextureFormat tcuColorFormat = mapVkFormat(VK_FORMAT_R8G8B8A8_UNORM); in verifyImage()
750 const tcu::TextureFormat tcuStencilFormat = mapVkFormat(m_stencilFormat); in verifyImage()
943 const bool hasDepth = tcu::hasDepthComponent(mapVkFormat(stencilFormat).order); in createStencilTests()
944 const bool hasStencil = tcu::hasStencilComponent(mapVkFormat(stencilFormat).order); in createStencilTests()
DvktPipelineMultisampleImageTests.cpp813 const int numComponents = tcu::getNumUsedChannels(mapVkFormat(caseDef.colorFormat).order); in addSimpleVertexAndFragmentPrograms()
962 const int numComponents = tcu::getNumUsedChannels(mapVkFormat(caseDef.colorFormat).order); in initPrograms()
1068 … = caseDef.renderSize.x() * caseDef.renderSize.y() * tcu::getPixelSize(mapVkFormat(checksumFormat)… in test()
1158 …const tcu::ConstPixelBufferAccess access (mapVkFormat(checksumFormat), caseDef.renderSize.x()… in test()
1197 …const std::string imageTypeStr = getShaderMultisampledImageType(mapVkFormat(caseDef.colorFormat),… in initPrograms()
1198 …const std::string formatQualifierStr = getShaderImageFormatQualifier(mapVkFormat(caseDef.colorForm… in initPrograms()
1468 …e.x() * caseDef.renderSize.y() * caseDef.numLayers * tcu::getPixelSize(mapVkFormat(caseDef.colorFo… in test()
1488 …const tcu::PixelBufferAccess layeredImageOne (mapVkFormat(caseDef.colorFormat), caseDef.renderSiz… in test()
1489 …const tcu::ConstPixelBufferAccess layeredImageTwo (mapVkFormat(caseDef.colorFormat), caseDef.rende… in test()
1627 … = caseDef.renderSize.x() * caseDef.renderSize.y() * tcu::getPixelSize(mapVkFormat(checksumFormat)… in test()
[all …]
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/geometry/
DvktGeometryBasicClass.cpp111 …colorBufferSizeBytes = resolution.x()*resolution.y() * tcu::getPixelSize(mapVkFormat(colorFormat)); in iterate()
180 …const tcu::ConstPixelBufferAccess imagePixelAccess(mapVkFormat(colorFormat), resolution.x(), resol… in iterate()
DvktGeometryInstancedRenderingTests.cpp366 … colorBufferSize = renderSize.x() * renderSize.y() * tcu::getPixelSize(mapVkFormat(colorFormat)); in test()
384 …const tcu::ConstPixelBufferAccess result(mapVkFormat(colorFormat), renderSize.x(), renderSize.y(),… in test()
386 tcu::TextureLevel reference(mapVkFormat(colorFormat), renderSize.x(), renderSize.y()); in test()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/dynamic_state/
DvktDynamicStateVPTests.cpp143 …tcu::Texture2D referenceFrame(vk::mapVkFormat(m_colorAttachmentFormat), (int)(0.5f + static_cast<f… in buildReferenceFrame()
190 …tcu::Texture2D referenceFrame(vk::mapVkFormat(m_colorAttachmentFormat), (int)(0.5f + static_cast<f… in buildReferenceFrame()
311 …tcu::Texture2D referenceFrame(vk::mapVkFormat(m_colorAttachmentFormat), (int)(0.5f + static_cast<f… in iterate()

12345678