/external/deqp/framework/common/ |
D | tcuImageCompare.cpp | 220 …TextureLevel errorMask (TextureFormat(TextureFormat::RGB, TextureFormat::UNORM_INT8), reference.… in fuzzyCompare() 232 …mat::RGBA, TextureFormat::UNORM_INT8) && reference.getFormat() != TextureFormat(TextureFormat::RGB… in fuzzyCompare() 246 if (result.getFormat() != TextureFormat(TextureFormat::RGBA, TextureFormat::UNORM_INT8)) in fuzzyCompare() 293 …ERNAL(ref.getFormat().type == TextureFormat::UNORM_INT8 && cmp.getFormat().type == TextureFormat::… in computeSquaredDiffSum() 337 …TextureLevel diffMask (TextureFormat(TextureFormat::RGB, TextureFormat::UNORM_INT8), reference.ge… in measurePixelDiffAccuracy() 348 …mat::RGBA, TextureFormat::UNORM_INT8) && reference.getFormat() != TextureFormat(TextureFormat::RGB… in measurePixelDiffAccuracy() 359 if (result.getFormat() != TextureFormat(TextureFormat::RGBA, TextureFormat::UNORM_INT8)) in measurePixelDiffAccuracy() 493 …TextureLevel errorMaskStorage (TextureFormat(TextureFormat::RGB, TextureFormat::UNORM_INT8), widt… in floatUlpThresholdCompare() 542 if (result.getFormat() != TextureFormat(TextureFormat::RGBA, TextureFormat::UNORM_INT8)) in floatUlpThresholdCompare() 579 …TextureLevel errorMaskStorage (TextureFormat(TextureFormat::RGB, TextureFormat::UNORM_INT8), widt… in floatThresholdCompare() [all …]
|
D | tcuImageIO.cpp | 114 textureFormat = TextureFormat(TextureFormat::RGB, TextureFormat::UNORM_INT8); in loadPNG() 116 textureFormat = TextureFormat(TextureFormat::RGBA, TextureFormat::UNORM_INT8); in loadPNG() 137 if (format == TextureFormat(TextureFormat::RGB, TextureFormat::UNORM_INT8)) in textureFormatToPNGFormat() 139 else if (format == TextureFormat(TextureFormat::RGBA, TextureFormat::UNORM_INT8)) in textureFormatToPNGFormat()
|
D | tcuSurface.hpp | 107 …return ConstPixelBufferAccess(TextureFormat(TextureFormat::RGBA, TextureFormat::UNORM_INT8), m_wid… in getAccess() 113 …return PixelBufferAccess(TextureFormat(TextureFormat::RGBA, TextureFormat::UNORM_INT8), m_width, m… in getAccess()
|
D | tcuBilinearImageCompare.cpp | 193 DE_ASSERT(reference.getFormat() == TextureFormat(TextureFormat::RGBA, TextureFormat::UNORM_INT8) && in bilinearCompareRGBA8() 194 result.getFormat() == TextureFormat(TextureFormat::RGBA, TextureFormat::UNORM_INT8)); in bilinearCompareRGBA8() 229 if (reference.getFormat() == TextureFormat(TextureFormat::RGBA, TextureFormat::UNORM_INT8)) in bilinearCompare()
|
D | tcuFuzzyImageCompare.cpp | 270 …return format.type == TextureFormat::UNORM_INT8 && (format.order == TextureFormat::RGB || format.o… in isFormatSupported() 286 …TextureLevel refFiltered(TextureFormat(TextureFormat::RGBA, TextureFormat::UNORM_INT8), width, hei… in fuzzyCompare() 287 …TextureLevel cmpFiltered(TextureFormat(TextureFormat::RGBA, TextureFormat::UNORM_INT8), width, hei… in fuzzyCompare()
|
D | tcuTestLog.cpp | 256 if (depth == 1 && format.type == TextureFormat::UNORM_INT8 in writeImage() 274 …tcu::TextureLevel logImage (TextureFormat(TextureFormat::RGBA, TextureFormat::UNORM_INT8), logIma… in writeImage() 308 …tcu::TextureLevel logImage (TextureFormat(TextureFormat::RGBA, TextureFormat::UNORM_INT8), logIm… in writeImage()
|
D | tcuCompressedTexture.cpp | 301 …SSEDTEXFORMAT_ETC1_RGB8: return TextureFormat(TextureFormat::RGB, TextureFormat::UNORM_INT8); in getUncompressedFormat() 306 …SSEDTEXFORMAT_ETC2_RGB8: return TextureFormat(TextureFormat::RGB, TextureFormat::UNORM_INT8); in getUncompressedFormat() 307 …SEDTEXFORMAT_ETC2_SRGB8: return TextureFormat(TextureFormat::sRGB, TextureFormat::UNORM_INT8); in getUncompressedFormat() 308 …C2_RGB8_PUNCHTHROUGH_ALPHA1: return TextureFormat(TextureFormat::RGBA, TextureFormat::UNORM_INT8); in getUncompressedFormat() 309 …2_SRGB8_PUNCHTHROUGH_ALPHA1: return TextureFormat(TextureFormat::sRGBA, TextureFormat::UNORM_INT8); in getUncompressedFormat() 310 …TEXFORMAT_ETC2_EAC_RGBA8: return TextureFormat(TextureFormat::RGBA, TextureFormat::UNORM_INT8); in getUncompressedFormat() 311 …AT_ETC2_EAC_SRGB8_ALPHA8: return TextureFormat(TextureFormat::sRGBA, TextureFormat::UNORM_INT8); in getUncompressedFormat() 321 return TextureFormat(TextureFormat::sRGBA, TextureFormat::UNORM_INT8); in getUncompressedFormat() 334 return TextureFormat(TextureFormat::sRGBA, TextureFormat::UNORM_INT8); in getUncompressedFormat() 336 return TextureFormat(TextureFormat::RGBA, TextureFormat::UNORM_INT8); in getUncompressedFormat()
|
/external/deqp/framework/opengl/ |
D | gluTextureUtil.cpp | 101 case TextureFormat::UNORM_INT8: type = GL_UNSIGNED_BYTE; break; in getTransferFormat() 164 case FMT_CASE(RGBA, UNORM_INT8): return GL_RGBA8; in getInternalFormat() 167 case FMT_CASE(sRGBA, UNORM_INT8): return GL_SRGB8_ALPHA8; in getInternalFormat() 172 case FMT_CASE(RGB, UNORM_INT8): return GL_RGB8; in getInternalFormat() 185 case FMT_CASE(sRGB, UNORM_INT8): return GL_SRGB8; in getInternalFormat() 197 case FMT_CASE(RG, UNORM_INT8): return GL_RG8; in getInternalFormat() 201 case FMT_CASE(sRG, UNORM_INT8): return GL_SRG8_EXT; in getInternalFormat() 211 case FMT_CASE(R, UNORM_INT8): return GL_R8; in getInternalFormat() 215 case FMT_CASE(sR, UNORM_INT8): return GL_SR8_EXT; in getInternalFormat() 403 …case GL_UNSIGNED_BYTE: return normalized ? TextureFormat::UNORM_INT8 : TextureFormat::UNSIGNED… in mapGLChannelType() [all …]
|
/external/deqp/modules/gles2/functional/ |
D | es2fReadPixelsTests.cpp | 161 format = tcu::TextureFormat(tcu::TextureFormat::RGBA, tcu::TextureFormat::UNORM_INT8); in getFormatInfo() 176 tcu::TextureFormat format(tcu::TextureFormat::RGBA, tcu::TextureFormat::UNORM_INT8); in iterate() 224 …GBA8 (tcu::TextureFormat(tcu::TextureFormat::RGBA, tcu::TextureFormat::UNORM_INT8), width, height,… in iterate() 225 …BA8 (tcu::TextureFormat(tcu::TextureFormat::RGBA, tcu::TextureFormat::UNORM_INT8), width, height,… in iterate()
|
/external/deqp/modules/gles31/functional/ |
D | es31fNegativeShaderImageLoadStoreTests.cpp | 102 case tcu::TextureFormat::UNORM_INT8: qualifier << "8"; break; in getShaderImageLayoutQualifier() 126 case tcu::TextureFormat::UNORM_INT8: in getShaderImageTypeDeclaration() 222 case tcu::TextureFormat::UNORM_INT8: in getOtherFunctionArguments() 400 tcu::TextureFormat(tcu::TextureFormat::RGBA, tcu::TextureFormat::UNORM_INT8), in image_store() 438 tcu::TextureFormat(tcu::TextureFormat::RGBA, tcu::TextureFormat::UNORM_INT8), in image_load() 523 tcu::TextureFormat(tcu::TextureFormat::RGBA, tcu::TextureFormat::UNORM_INT8), in image_atomic_exchange()
|
D | es31fDrawBuffersIndexedTests.cpp | 536 return TextureFormat(TextureFormat::RGBA, TextureFormat::UNORM_INT8); in getReadPixelFormat() 543 return TextureFormat(TextureFormat::RGBA, TextureFormat::UNORM_INT8); in getReadPixelFormat() 1516 …ec2(64, 64), emptyState, TextureFormat(tcu::TextureFormat::RGBA, tcu::TextureFormat::UNORM_INT8))); in createDiffTest() 1517 …4, 64), drawBufferState, TextureFormat(tcu::TextureFormat::RGBA, tcu::TextureFormat::UNORM_INT8))); in createDiffTest() 1529 …ec2(64, 64), emptyState, TextureFormat(tcu::TextureFormat::RGBA, tcu::TextureFormat::UNORM_INT8))); in createDiffTest() 1530 …4, 64), drawBufferState, TextureFormat(tcu::TextureFormat::RGBA, tcu::TextureFormat::UNORM_INT8))); in createDiffTest() 1553 …4, 64), drawBufferState, TextureFormat(tcu::TextureFormat::RGBA, tcu::TextureFormat::UNORM_INT8))); in createAdvancedEqDiffTest() 1565 …4, 64), drawBufferState, TextureFormat(tcu::TextureFormat::RGBA, tcu::TextureFormat::UNORM_INT8))); in createAdvancedEqDiffTest()
|
D | es31fAdvancedBlendTests.cpp | 275 …t(useSRGB ? TextureFormat::sRGBA : TextureFormat::RGBA, TextureFormat::UNORM_INT8), m_viewportWidt… in init() 392 return tcu::ConstPixelBufferAccess(TextureFormat(TextureFormat::RGBA, TextureFormat::UNORM_INT8), in getLinearAccess() 409 …TextureLevel renderedImg (TextureFormat(TextureFormat::RGBA, TextureFormat::UNORM_INT8), m_vi… in iterate()
|
/external/deqp/external/vulkancts/framework/vulkan/ |
D | vkImageUtil.cpp | 2679 case FMT_CASE(R, UNORM_INT8): return VK_FORMAT_R8_UNORM; in mapTextureFormat() 2683 case FMT_CASE(sR, UNORM_INT8): return VK_FORMAT_R8_SRGB; in mapTextureFormat() 2685 case FMT_CASE(RG, UNORM_INT8): return VK_FORMAT_R8G8_UNORM; in mapTextureFormat() 2689 case FMT_CASE(sRG, UNORM_INT8): return VK_FORMAT_R8G8_SRGB; in mapTextureFormat() 2691 case FMT_CASE(RGB, UNORM_INT8): return VK_FORMAT_R8G8B8_UNORM; in mapTextureFormat() 2695 case FMT_CASE(sRGB, UNORM_INT8): return VK_FORMAT_R8G8B8_SRGB; in mapTextureFormat() 2697 case FMT_CASE(RGBA, UNORM_INT8): return VK_FORMAT_R8G8B8A8_UNORM; in mapTextureFormat() 2701 case FMT_CASE(sRGBA, UNORM_INT8): return VK_FORMAT_R8G8B8A8_SRGB; in mapTextureFormat() 2758 case FMT_CASE(BGR, UNORM_INT8): return VK_FORMAT_B8G8R8_UNORM; in mapTextureFormat() 2762 case FMT_CASE(sBGR, UNORM_INT8): return VK_FORMAT_B8G8R8_SRGB; in mapTextureFormat() [all …]
|
/external/deqp/external/openglcts/modules/common/ |
D | glcNearestEdgeTests.cpp | 135 …Format(8,8,8,8), tcu::TextureFormat(tcu::TextureFormat::RGBA, tcu::TextureFormat::UNORM_INT8) }, in toTextureFormat() 136 …Format(8,8,8,0), tcu::TextureFormat(tcu::TextureFormat::RGB, tcu::TextureFormat::UNORM_INT8) }, in toTextureFormat() 158 return tcu::TextureFormat(tcu::TextureFormat::RGBA, tcu::TextureFormat::UNORM_INT8); in toTextureFormat() 366 const tcu::TextureFormat diffFormat {tcu::TextureFormat::RGBA, tcu::TextureFormat::UNORM_INT8}; in verifyResults()
|
/external/deqp/modules/glshared/ |
D | glsRandomShaderCase.cpp | 480 …cu::TextureFormat::RGBA : tcu::TextureFormat::RGB, tcu::TextureFormat::UNORM_INT8), viewportWidth,… in iterate() 481 …cu::TextureFormat::RGBA : tcu::TextureFormat::RGB, tcu::TextureFormat::UNORM_INT8), viewportWidth,… in iterate() 553 …).order != tcu::TextureFormat::RGBA || rendered.getFormat().type != tcu::TextureFormat::UNORM_INT8) in iterate() 556 …adBuf(tcu::TextureFormat(tcu::TextureFormat::RGBA, tcu::TextureFormat::UNORM_INT8), rendered.getWi… in iterate()
|
D | glsSamplerObjectTest.cpp | 382 …ture (tcu::TextureFormat(tcu::TextureFormat::RGBA, tcu::TextureFormat::UNORM_INT8), TEXTURE2D_WIDT… in createTexture2D() 408 …ture (tcu::TextureFormat(tcu::TextureFormat::RGBA, tcu::TextureFormat::UNORM_INT8), TEXTURE3D_WIDT… in createTexture3D() 434 …xture (tcu::TextureFormat(tcu::TextureFormat::RGBA, tcu::TextureFormat::UNORM_INT8), CUBEMAP_SIZE); in createTextureCube() 879 …ture (tcu::TextureFormat(tcu::TextureFormat::RGBA, tcu::TextureFormat::UNORM_INT8), TEXTURE2D_WIDT… in createTexture2D() 918 …ture (tcu::TextureFormat(tcu::TextureFormat::RGBA, tcu::TextureFormat::UNORM_INT8), TEXTURE3D_WIDT… in createTexture3D() 957 …xture (tcu::TextureFormat(tcu::TextureFormat::RGBA, tcu::TextureFormat::UNORM_INT8), CUBEMAP_SIZE); in createTextureCube()
|
D | glsLongStressCase.cpp | 219 (texFormat.type == TextureFormat::UNORM_INT8 || in isMatchingGLInternalFormat() 224 (texFormat.type == TextureFormat::UNORM_INT8 || in isMatchingGLInternalFormat() 227 …_ALPHA: return texFormat.order == TextureFormat::LA && texFormat.type == TextureFormat::UNORM_INT8; in isMatchingGLInternalFormat() 228 …NANCE: return texFormat.order == TextureFormat::L && texFormat.type == TextureFormat::UNORM_INT8; in isMatchingGLInternalFormat() 229 …LPHA: return texFormat.order == TextureFormat::A && texFormat.type == TextureFormat::UNORM_INT8; in isMatchingGLInternalFormat()
|
/external/deqp/external/vulkancts/modules/vulkan/texture/ |
D | vktTextureTestUtil.cpp | 1523 …evel.getFormat() == tcu::TextureFormat(tcu::TextureFormat::RGBA, tcu::TextureFormat::UNORM_INT8) || in loadTexture2D() 1524 … level.getFormat() == tcu::TextureFormat(tcu::TextureFormat::RGB, tcu::TextureFormat::UNORM_INT8)); in loadTexture2D() 1527 …ure2D(tcu::TextureFormat(tcu::TextureFormat::RGBA, tcu::TextureFormat::UNORM_INT8), level.getWidth… in loadTexture2D() 1546 …mat commonFormat = tcu::TextureFormat(tcu::TextureFormat::RGBA, tcu::TextureFormat::UNORM_INT8); in loadTexture2D() 1584 …evel.getFormat() == tcu::TextureFormat(tcu::TextureFormat::RGBA, tcu::TextureFormat::UNORM_INT8) || in loadTextureCube() 1585 … level.getFormat() == tcu::TextureFormat(tcu::TextureFormat::RGB, tcu::TextureFormat::UNORM_INT8)); in loadTextureCube() 1590 …eCube(tcu::TextureFormat(tcu::TextureFormat::RGBA, tcu::TextureFormat::UNORM_INT8), level.getWidth… in loadTextureCube() 1610 …t commonFormat = tcu::TextureFormat(tcu::TextureFormat::RGBA, tcu::TextureFormat::UNORM_INT8); in loadTextureCube()
|
/external/deqp/modules/gles3/functional/ |
D | es3fReadPixelsTests.cpp | 329 tcu::TextureFormat format(tcu::TextureFormat::RGBA, tcu::TextureFormat::UNORM_INT8); in iterate() 369 …GBA8 (tcu::TextureFormat(tcu::TextureFormat::RGBA, tcu::TextureFormat::UNORM_INT8), m_width, m_hei… in iterate() 370 …BA8 (tcu::TextureFormat(tcu::TextureFormat::RGBA, tcu::TextureFormat::UNORM_INT8), m_width, m_hei… in iterate()
|
D | es3fBlendTests.cpp | 207 …xtureFormat::sRGBA : useRGB ? TextureFormat::RGB : TextureFormat::RGBA, TextureFormat::UNORM_INT8), in init() 261 …seSrgbFbo ? TextureFormat::sRGBA : TextureFormat::RGBA, TextureFormat::UNORM_INT8), m_viewportWidt… in iterate()
|
/external/deqp/external/vulkancts/modules/vulkan/pipeline/ |
D | vktPipelineMultisampleBase.hpp | 105 , m_imageFormat (tcu::TextureFormat(tcu::TextureFormat::RGBA, tcu::TextureFormat::UNORM_INT8)) in MultisampleInstanceBase()
|
D | vktPipelineMultisampleTestsUtil.cpp | 316 case tcu::TextureFormat::UNORM_INT8: typePart = "8"; break; in getShaderImageFormatQualifier()
|
/external/deqp/modules/egl/ |
D | teglRenderTests.cpp | 352 case PACK_FMT(8,8,8,8): return TextureFormat(TextureFormat::RGBA, TextureFormat::UNORM_INT8); in getColorFormat() 353 case PACK_FMT(8,8,8,0): return TextureFormat(TextureFormat::RGB, TextureFormat::UNORM_INT8); in getColorFormat() 359 default: return TextureFormat(TextureFormat::RGBA, TextureFormat::UNORM_INT8); in getColorFormat() 401 case 8: return tcu::TextureFormat(tcu::TextureFormat::D, tcu::TextureFormat::UNORM_INT8); in getDepthFormat()
|
/external/deqp/modules/internal/ |
D | ditImageCompareTests.cpp | 48 …dst.setStorage(tcu::TextureFormat(tcu::TextureFormat::RGBA, tcu::TextureFormat::UNORM_INT8), tmp.g… in loadImageRGBA8()
|
/external/deqp/external/openglcts/modules/gles3/ |
D | es3cNumberParsingTests.cpp | 357 … auto textureFormat = tcu::TextureFormat(tcu::TextureFormat::RGBA, tcu::TextureFormat::UNORM_INT8); in iterate()
|