/external/deqp/framework/opengl/ |
D | gluTextureUtil.cpp | 99 case TextureFormat::SNORM_INT8: type = GL_BYTE; break; in getTransferFormat() 170 case FMT_CASE(RGBA, SNORM_INT8): return GL_RGBA8_SNORM; in getInternalFormat() 182 case FMT_CASE(RGB, SNORM_INT8): return GL_RGB8_SNORM; in getInternalFormat() 200 case FMT_CASE(RG, SNORM_INT8): return GL_RG8_SNORM; in getInternalFormat() 214 case FMT_CASE(R, SNORM_INT8): return GL_R8_SNORM; in getInternalFormat() 404 case GL_BYTE: return normalized ? TextureFormat::SNORM_INT8 : TextureFormat::SIGNED_INT8; in mapGLChannelType() 497 case GL_RGBA8_SNORM: return TextureFormat(TextureFormat::RGBA, TextureFormat::SNORM_INT8); in mapGLInternalFormat() 509 case GL_RGB8_SNORM: return TextureFormat(TextureFormat::RGB, TextureFormat::SNORM_INT8); in mapGLInternalFormat() 527 case GL_RG8_SNORM: return TextureFormat(TextureFormat::RG, TextureFormat::SNORM_INT8); in mapGLInternalFormat() 541 case GL_R8_SNORM: return TextureFormat(TextureFormat::R, TextureFormat::SNORM_INT8); in mapGLInternalFormat()
|
/external/deqp/modules/gles31/functional/ |
D | es31fNegativeShaderImageLoadStoreTests.cpp | 103 case tcu::TextureFormat::SNORM_INT8: qualifier << "8_snorm"; break; in getShaderImageLayoutQualifier() 127 case tcu::TextureFormat::SNORM_INT8: declaration << ""; break; in getShaderImageTypeDeclaration() 223 case tcu::TextureFormat::SNORM_INT8: in getOtherFunctionArguments() 401 tcu::TextureFormat(tcu::TextureFormat::RGBA, tcu::TextureFormat::SNORM_INT8), in image_store() 439 tcu::TextureFormat(tcu::TextureFormat::RGBA, tcu::TextureFormat::SNORM_INT8), in image_load() 524 tcu::TextureFormat(tcu::TextureFormat::RGBA, tcu::TextureFormat::SNORM_INT8), in image_atomic_exchange()
|
D | es31fShaderImageLoadStoreTests.cpp | 163 return type == TextureFormat::SNORM_INT8 || in isFormatTypeSnorm() 227 case TextureFormat::SNORM_INT8: typePart = "8_snorm"; break; in getShaderImageFormatQualifier() 3187 TextureFormat(TextureFormat::RGBA, TextureFormat::SNORM_INT8) in init()
|
/external/deqp/external/vulkancts/framework/vulkan/ |
D | vkImageUtil.cpp | 1574 case FMT_CASE(R, SNORM_INT8): return VK_FORMAT_R8_SNORM; in mapTextureFormat() 1580 case FMT_CASE(RG, SNORM_INT8): return VK_FORMAT_R8G8_SNORM; in mapTextureFormat() 1586 case FMT_CASE(RGB, SNORM_INT8): return VK_FORMAT_R8G8B8_SNORM; in mapTextureFormat() 1592 case FMT_CASE(RGBA, SNORM_INT8): return VK_FORMAT_R8G8B8A8_SNORM; in mapTextureFormat() 1651 case FMT_CASE(BGR, SNORM_INT8): return VK_FORMAT_B8G8R8_SNORM; in mapTextureFormat() 1657 case FMT_CASE(BGRA, SNORM_INT8): return VK_FORMAT_B8G8R8A8_SNORM; in mapTextureFormat() 1786 case VK_FORMAT_R8_SNORM: return TextureFormat(TextureFormat::R, TextureFormat::SNORM_INT8); in mapVkFormat() 1794 case VK_FORMAT_R8G8_SNORM: return TextureFormat(TextureFormat::RG, TextureFormat::SNORM_INT8); in mapVkFormat() 1802 …case VK_FORMAT_R8G8B8_SNORM: return TextureFormat(TextureFormat::RGB, TextureFormat::SNORM_INT8); in mapVkFormat() 1810 …e VK_FORMAT_R8G8B8A8_SNORM: return TextureFormat(TextureFormat::RGBA, TextureFormat::SNORM_INT8); in mapVkFormat() [all …]
|
/external/deqp/external/vulkancts/modules/vulkan/pipeline/ |
D | vktPipelineMultisampleTestsUtil.cpp | 319 case tcu::TextureFormat::SNORM_INT8: typePart = "8_snorm"; break; in getShaderImageFormatQualifier()
|
D | vktPipelineBlendTests.cpp | 629 case TextureFormat::SNORM_INT8: in getFormatThreshold() 700 case TextureFormat::SNORM_INT8: in isLegalExpandableFormat()
|
D | vktPipelineMultisampleImageTests.cpp | 689 case tcu::TextureFormat::SNORM_INT8: typePart = "8_snorm"; break; in getShaderImageFormatQualifier()
|
D | vktPipelineImageSamplingInstance.cpp | 1371 …bool allowSnorm8Bug = m_texture->getTextureFormat().type == tcu::TextureFormat::SNORM_INT8 && in verifyImage()
|
/external/deqp/framework/common/ |
D | tcuTextureUtil.cpp | 169 case TextureFormat::SNORM_INT8: return TEXTURECHANNELCLASS_SIGNED_FIXED_POINT; in getTextureChannelClass() 360 case TextureFormat::SNORM_INT8: in getFloatChannelValueRange() 525 case TextureFormat::SNORM_INT8: return IVec4(8); in getChannelBitDepth() 594 case TextureFormat::SNORM_INT8: in getChannelMantissaBitDepth()
|
D | tcuTexture.cpp | 281 case TextureFormat::SNORM_INT8: return de::max(-1.0f, (float)*((const deInt8*)value) / 127.0f); in channelToFloat() 313 case TextureFormat::SNORM_INT8: return (int)*((const deInt8*)value); in channelToInt() 345 …case TextureFormat::SNORM_INT8: *((deInt8*)dst) = convertSatRte<deInt8> (src * 127.0f); br… in floatToChannel() 432 case TextureFormat::SNORM_INT8: *((deInt8*)dst) = convertSat<deInt8> (src); break; in intToChannel() 569 case TextureFormat::SNORM_INT8: in isValid() 690 case TextureFormat::SNORM_INT8: return 1; in getChannelSize()
|
D | tcuTexture.hpp | 74 SNORM_INT8 = 0, enumerator
|
/external/deqp/external/vulkancts/modules/vulkan/sparse_resources/ |
D | vktSparseResourcesTestsUtil.cpp | 619 case tcu::TextureFormat::SNORM_INT8: typePart = "8_snorm"; break; in getShaderImageFormatQualifier()
|
/external/deqp/external/vulkancts/modules/vulkan/image/ |
D | vktImageTestsUtil.cpp | 759 case tcu::TextureFormat::SNORM_INT8: typePart = "8_snorm"; break; in getShaderImageFormatQualifier()
|
D | vktImageTranscodingSupportTests.cpp | 201 if (textureFormat.type == tcu::TextureFormat::SNORM_INT8) in generateData()
|
/external/deqp/external/vulkancts/modules/vulkan/protected_memory/ |
D | vktProtectedMemShaderImageAccessTests.cpp | 204 case tcu::TextureFormat::SNORM_INT8: typePart = "8_snorm"; break; in getShaderImageFormatQualifier()
|
/external/deqp/external/vulkancts/modules/vulkan/synchronization/ |
D | vktSynchronizationOperation.cpp | 451 case tcu::TextureFormat::SNORM_INT8: typePart = "8_snorm"; break; in getShaderImageFormatQualifier()
|