Home
last modified time | relevance | path

Searched refs:SNORM_INT16 (Results 1 – 6 of 6) sorted by relevance

/external/deqp/framework/opengl/
DgluTextureUtil.cpp92 case TextureFormat::SNORM_INT16: type = GL_SHORT; break; in getTransferFormat()
152 case FMT_CASE(RGBA, SNORM_INT16): return GL_RGBA16_SNORM; in getInternalFormat()
170 case FMT_CASE(RGB, SNORM_INT16): return GL_RGB16_SNORM; in getInternalFormat()
185 case FMT_CASE(RG, SNORM_INT16): return GL_RG16_SNORM; in getInternalFormat()
198 case FMT_CASE(R, SNORM_INT16): return GL_R16_SNORM; in getInternalFormat()
287 case GL_SHORT: return normalized ? TextureFormat::SNORM_INT16 : TextureFormat::SIGNED_INT16; in mapGLChannelType()
365 case GL_RGBA16_SNORM: return TextureFormat(TextureFormat::RGBA, TextureFormat::SNORM_INT16); in mapGLInternalFormat()
383 case GL_RGB16_SNORM: return TextureFormat(TextureFormat::RGB, TextureFormat::SNORM_INT16); in mapGLInternalFormat()
398 case GL_RG16_SNORM: return TextureFormat(TextureFormat::RG, TextureFormat::SNORM_INT16); in mapGLInternalFormat()
411 case GL_R16_SNORM: return TextureFormat(TextureFormat::R, TextureFormat::SNORM_INT16); in mapGLInternalFormat()
/external/deqp/framework/common/
DtcuTextureUtil.cpp79 case TextureFormat::SNORM_INT16: return TEXTURECHANNELCLASS_SIGNED_FIXED_POINT; in getTextureChannelClass()
208 case TextureFormat::SNORM_INT16: cMin = -1.0f; cMax = 1.0f; break; in getChannelValueRange()
298 case TextureFormat::SNORM_INT16: return IVec4(16); in getChannelBitDepth()
364 case TextureFormat::SNORM_INT16: in getChannelMantissaBitDepth()
860 case TextureFormat::SNORM_INT16: in estimatePixelValueRange()
DtcuTexture.cpp216 case TextureFormat::SNORM_INT16: return 2; in getChannelSize()
266 …case TextureFormat::SNORM_INT16: return de::max(-1.0f, (float)*((const deInt16*)value) / 32767.0f… in channelToFloat()
290 case TextureFormat::SNORM_INT16: return (int)*((const deInt16*)value); in channelToInt()
314 …case TextureFormat::SNORM_INT16: *((deInt16*)dst) = convertSatRte<deInt16> (src * 32767.0f); br… in floatToChannel()
351 case TextureFormat::SNORM_INT16: *((deInt16*)dst) = convertSat<deInt16> (src); break; in intToChannel()
503 case SNORM_INT16: channelSize = 2; break; in getPixelSize()
3610 case TextureFormat::SNORM_INT16: return str << "SNORM_INT16"; in operator <<()
DtcuTexture.hpp69 SNORM_INT16, enumerator
DtcuCompressedTexture.cpp271 case EAC_SIGNED_R11: return TextureFormat(TextureFormat::R, TextureFormat::SNORM_INT16); in getUncompressedFormat()
273 case EAC_SIGNED_RG11: return TextureFormat(TextureFormat::RG, TextureFormat::SNORM_INT16); in getUncompressedFormat()
/external/deqp/modules/gles31/functional/
Des31fShaderImageLoadStoreTests.cpp163 type == TextureFormat::SNORM_INT16 || in isFormatTypeSnorm()
225 case TextureFormat::SNORM_INT16: typePart = "16_snorm"; break; in getShaderImageFormatQualifier()