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

/external/deqp/external/vulkancts/framework/vulkan/
H A DvkImageUtil.cpp1626 case FMT_CASE(R, UNORM_SHORT_10): return VK_FORMAT_R10X6_UNORM_PACK16_KHR;
1627 case FMT_CASE(RG, UNORM_SHORT_10): return VK_FORMAT_R10X6G10X6_UNORM_2PACK16_KHR;
1628 case FMT_CASE(RGBA, UNORM_SHORT_10): return VK_FORMAT_R10X6G10X6B10X6A10X6_UNORM_4PACK16_KHR;
1805 case VK_FORMAT_R10X6_UNORM_PACK16_KHR: return TextureFormat(TextureFormat::R, TextureFormat::UNORM_SHORT_10);
1806 case VK_FORMAT_R10X6G10X6_UNORM_2PACK16_KHR: return TextureFormat(TextureFormat::RG, TextureFormat::UNORM_SHORT_10);
1807 case VK_FORMAT_R10X6G10X6B10X6A10X6_UNORM_4PACK16_KHR: return TextureFormat(TextureFormat::RGBA, TextureFormat::UNORM_SHORT_10);
2007 return TextureFormat(TextureFormat::R, TextureFormat::UNORM_SHORT_10);
/external/deqp/framework/common/
H A DtcuTextureUtil.cpp207 case TextureFormat::UNORM_SHORT_10: return TEXTURECHANNELCLASS_UNSIGNED_FIXED_POINT;
378 case TextureFormat::UNORM_SHORT_10:
563 case TextureFormat::UNORM_SHORT_10: return IVec4(10);
627 case TextureFormat::UNORM_SHORT_10:
H A DtcuTexture.cpp298 case TextureFormat::UNORM_SHORT_10: return (float)((*((const deUint16*)value)) >> 6u) / 1023.0f;
330 case TextureFormat::UNORM_SHORT_10: return (int)((*(((const deUint16*)value))) >> 6u);
362 case TextureFormat::UNORM_SHORT_10: *((deUint16*)dst) = (deUint16)(convertSatRteUint10(src * 1023.0f) << 6u); break;
447 case TextureFormat::UNORM_SHORT_10: *((deUint16*)dst) = (deUint16)(convertSatUint10(src) << 6u); break;
637 case TextureFormat::UNORM_SHORT_10:
707 case TextureFormat::UNORM_SHORT_10: return 2;
3863 "UNORM_SHORT_10",
H A DtcuTexture.hpp113 UNORM_SHORT_10, enumerator in enum:tcu::TextureFormat::ChannelType

Completed in 107 milliseconds