Home
last modified time | relevance | path

Searched refs:UNORM_SHORT_10 (Results 1 – 4 of 4) sorted by relevance

/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/angle/third_party/VK-GL-CTS/src/external/vulkancts/framework/vulkan/
H A DvkImageUtil.cpp2578 case FMT_CASE(R, UNORM_SHORT_10): return VK_FORMAT_R10X6_UNORM_PACK16_KHR; in mapTextureFormat()
2579 case FMT_CASE(RG, UNORM_SHORT_10): return VK_FORMAT_R10X6G10X6_UNORM_2PACK16_KHR; in mapTextureFormat()
2580 case FMT_CASE(RGBA, UNORM_SHORT_10): return VK_FORMAT_R10X6G10X6B10X6A10X6_UNORM_4PACK16_KHR; in mapTextureFormat()
2853 …R10X6_UNORM_PACK16_KHR: return TextureFormat(TextureFormat::R, TextureFormat::UNORM_SHORT_10); in mapVkFormat()
2854 …G10X6_UNORM_2PACK16_KHR: return TextureFormat(TextureFormat::RG, TextureFormat::UNORM_SHORT_10); in mapVkFormat()
2855 …6A10X6_UNORM_4PACK16_KHR: return TextureFormat(TextureFormat::RGBA, TextureFormat::UNORM_SHORT_10); in mapVkFormat()
3074 return TextureFormat(TextureFormat::R, TextureFormat::UNORM_SHORT_10); in getChannelAccessFormat()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/angle/third_party/VK-GL-CTS/src/framework/common/
H A DtcuTextureUtil.cpp209 case TextureFormat::UNORM_SHORT_10: return TEXTURECHANNELCLASS_UNSIGNED_FIXED_POINT; in getTextureChannelClass()
386 case TextureFormat::UNORM_SHORT_10: in getFloatChannelValueRange()
587 case TextureFormat::UNORM_SHORT_10: return IVec4(10); in getChannelBitDepth()
657 case TextureFormat::UNORM_SHORT_10: in getChannelMantissaBitDepth()
H A DtcuTexture.cpp299 case TextureFormat::UNORM_SHORT_10: return (float)((*((const deUint16*)value)) >> 6u) / 1023.0f; in channelToFloat()
335 case TextureFormat::UNORM_SHORT_10: return (int)((*(((const deUint16*)value))) >> 6u); in channelToInt()
371 …case TextureFormat::UNORM_SHORT_10: *((deUint16*)dst) = (deUint16)(convertSatRteUint10(src * 102… in floatToChannel()
460 …case TextureFormat::UNORM_SHORT_10: *((deUint16*)dst) = (deUint16)(convertSatUint10(src) << 6u);… in intToChannel()
662 case TextureFormat::UNORM_SHORT_10: in isValid()
734 case TextureFormat::UNORM_SHORT_10: return 2; in getChannelSize()
H A DtcuTexture.hpp115 UNORM_SHORT_10, enumerator