/external/deqp/external/vulkancts/framework/vulkan/ |
D | vkImageUtil.cpp | 161 case FMT_CASE(R, SIGNED_INT8): return VK_FORMAT_R8_SINT; in mapTextureFormat() 167 case FMT_CASE(RG, SIGNED_INT8): return VK_FORMAT_R8G8_SINT; in mapTextureFormat() 173 case FMT_CASE(RGB, SIGNED_INT8): return VK_FORMAT_R8G8B8_SINT; in mapTextureFormat() 179 case FMT_CASE(RGBA, SIGNED_INT8): return VK_FORMAT_R8G8B8A8_SINT; in mapTextureFormat() 238 case FMT_CASE(BGR, SIGNED_INT8): return VK_FORMAT_B8G8R8_SINT; in mapTextureFormat() 244 case FMT_CASE(BGRA, SIGNED_INT8): return VK_FORMAT_B8G8R8A8_SINT; in mapTextureFormat() 293 case VK_FORMAT_R8_SSCALED: return TextureFormat(TextureFormat::R, TextureFormat::SIGNED_INT8); in mapVkFormat() 295 case VK_FORMAT_R8_SINT: return TextureFormat(TextureFormat::R, TextureFormat::SIGNED_INT8); in mapVkFormat() 301 …ase VK_FORMAT_R8G8_SSCALED: return TextureFormat(TextureFormat::RG, TextureFormat::SIGNED_INT8); in mapVkFormat() 303 case VK_FORMAT_R8G8_SINT: return TextureFormat(TextureFormat::RG, TextureFormat::SIGNED_INT8); in mapVkFormat() [all …]
|
/external/deqp/modules/gles31/functional/ |
D | es31fNegativeShaderImageLoadStoreTests.cpp | 116 case tcu::TextureFormat::SIGNED_INT8: qualifier << "8i"; break; in getShaderImageLayoutQualifier() 141 case tcu::TextureFormat::SIGNED_INT8: declaration << "i"; break; in getShaderImageTypeDeclaration() 240 case tcu::TextureFormat::SIGNED_INT8: in getOtherFunctionArguments() 415 tcu::TextureFormat(tcu::TextureFormat::RGBA, tcu::TextureFormat::SIGNED_INT8), in image_store() 456 tcu::TextureFormat(tcu::TextureFormat::RGBA, tcu::TextureFormat::SIGNED_INT8), in image_load() 491 tcu::TextureFormat(tcu::TextureFormat::RGBA, tcu::TextureFormat::SIGNED_INT8), in image_atomic() 547 tcu::TextureFormat(tcu::TextureFormat::RGBA, tcu::TextureFormat::SIGNED_INT8), in image_atomic_exchange()
|
D | es31fTextureGatherTests.cpp | 121 return type == tcu::TextureFormat::SIGNED_INT8 || in isSIntFormatType() 1056 m_colorBufferFormat.type == tcu::TextureFormat::SIGNED_INT8 || in TextureGatherCase() 1476 m_colorBufferFormat.type == tcu::TextureFormat::SIGNED_INT8); in verify() 2063 { "rgba8i", tcu::TextureFormat(tcu::TextureFormat::RGBA, tcu::TextureFormat::SIGNED_INT8) }, in init()
|
D | es31fShaderImageLoadStoreTests.cpp | 143 return type == TextureFormat::SIGNED_INT8 || in isFormatTypeSignedInteger() 183 format.type == TextureFormat::SIGNED_INT8 || in isFormatSupportedForTextureBuffer() 220 case TextureFormat::SIGNED_INT8: typePart = "8i"; break; in getShaderImageFormatQualifier() 3181 TextureFormat(TextureFormat::RGBA, TextureFormat::SIGNED_INT8), in init()
|
D | es31fOpaqueTypeIndexingTests.cpp | 225 …u::TYPE_INT: return tcu::TextureFormat(tcu::TextureFormat::RGBA, tcu::TextureFormat::SIGNED_INT8); in getSamplerTextureFormat()
|
/external/deqp/framework/opengl/ |
D | gluTextureUtil.cpp | 56 case TextureFormat::SIGNED_INT8: in getTransferFormat() 106 case TextureFormat::SIGNED_INT8: type = GL_BYTE; break; in getTransferFormat() 165 case FMT_CASE(RGBA, SIGNED_INT8): return GL_RGBA8I; in getInternalFormat() 183 case FMT_CASE(RGB, SIGNED_INT8): return GL_RGB8I; in getInternalFormat() 198 case FMT_CASE(RG, SIGNED_INT8): return GL_RG8I; in getInternalFormat() 212 case FMT_CASE(R, SIGNED_INT8): return GL_R8I; in getInternalFormat() 404 case GL_BYTE: return normalized ? TextureFormat::SNORM_INT8 : TextureFormat::SIGNED_INT8; in mapGLChannelType() 489 case GL_RGBA8I: return TextureFormat(TextureFormat::RGBA, TextureFormat::SIGNED_INT8); in mapGLInternalFormat() 507 case GL_RGB8I: return TextureFormat(TextureFormat::RGB, TextureFormat::SIGNED_INT8); in mapGLInternalFormat() 522 case GL_RG8I: return TextureFormat(TextureFormat::RG, TextureFormat::SIGNED_INT8); in mapGLInternalFormat() [all …]
|
/external/deqp/framework/common/ |
D | tcuTextureUtil.cpp | 191 case TextureFormat::SIGNED_INT8: return TEXTURECHANNELCLASS_SIGNED_INTEGER; in getTextureChannelClass() 373 case TextureFormat::SIGNED_INT8: cMin = -128.0f; cMax = 127.0f; break; in getFloatChannelValueRange() 458 case TextureFormat::SIGNED_INT8: return IVec4(std::numeric_limits<deInt8>::min()); in getFormatMinIntValue() 474 case TextureFormat::SIGNED_INT8: return IVec4(std::numeric_limits<deInt8>::max()); in getFormatMaxIntValue() 531 case TextureFormat::SIGNED_INT8: return IVec4(8); in getChannelBitDepth() 598 case TextureFormat::SIGNED_INT8: in getChannelMantissaBitDepth()
|
D | tcuTexture.cpp | 274 case TextureFormat::SIGNED_INT8: return 1; in getChannelSize() 338 case TextureFormat::SIGNED_INT8: return (float)*((const deInt8*)value); in channelToFloat() 368 case TextureFormat::SIGNED_INT8: return (int)*((const deInt8*)value); in channelToInt() 398 case TextureFormat::SIGNED_INT8: *((deInt8*)dst) = convertSatRte<deInt8> (src); break; in floatToChannel() 453 case TextureFormat::SIGNED_INT8: *((deInt8*)dst) = convertSat<deInt8> (src); break; in intToChannel() 632 case TextureFormat::SIGNED_INT8: in isValid()
|
D | tcuTexture.hpp | 101 SIGNED_INT8, enumerator
|
/external/deqp/external/vulkancts/modules/vulkan/image/ |
D | vktImageTestsUtil.cpp | 555 case tcu::TextureFormat::SIGNED_INT8: typePart = "8i"; break; in getShaderImageFormatQualifier()
|
/external/deqp/external/vulkancts/modules/vulkan/sparse_resources/ |
D | vktSparseResourcesImageSparseResidency.cpp | 772 tcu::TextureFormat(tcu::TextureFormat::R, tcu::TextureFormat::SIGNED_INT8), in createImageSparseResidencyTests() 775 tcu::TextureFormat(tcu::TextureFormat::RG, tcu::TextureFormat::SIGNED_INT8), in createImageSparseResidencyTests()
|
D | vktSparseResourcesImageSparseBinding.cpp | 426 tcu::TextureFormat(tcu::TextureFormat::R, tcu::TextureFormat::SIGNED_INT8), in createImageSparseBindingTests()
|
D | vktSparseResourcesTestsUtil.cpp | 676 case tcu::TextureFormat::SIGNED_INT8: typePart = "8i"; break; in getShaderImageFormatQualifier()
|
D | vktSparseResourcesMipmapSparseResidency.cpp | 574 tcu::TextureFormat(tcu::TextureFormat::R, tcu::TextureFormat::SIGNED_INT8), in createMipmapSparseResidencyTests()
|
/external/deqp/external/vulkancts/modules/vulkan/shaderexecutor/ |
D | vktOpaqueTypeIndexingTests.cpp | 327 …u::TYPE_INT: return tcu::TextureFormat(tcu::TextureFormat::RGBA, tcu::TextureFormat::SIGNED_INT8); in getSamplerTextureFormat()
|
/external/deqp/modules/glshared/ |
D | glsTextureTestUtil.cpp | 64 case TextureFormat::SIGNED_INT8: in getSamplerType() 90 case TextureFormat::SIGNED_INT8: in getFetchSamplerType()
|