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

/external/deqp/external/vulkancts/framework/vulkan/
H A DvkImageUtil.cpp1630 case FMT_CASE(R, UNORM_SHORT_12): return VK_FORMAT_R12X4_UNORM_PACK16_KHR;
1631 case FMT_CASE(RG, UNORM_SHORT_12): return VK_FORMAT_R12X4G12X4_UNORM_2PACK16_KHR;
1632 case FMT_CASE(RGBA, UNORM_SHORT_12): return VK_FORMAT_R12X4G12X4B12X4A12X4_UNORM_4PACK16_KHR;
1863 case VK_FORMAT_R12X4_UNORM_PACK16_KHR: return TextureFormat(TextureFormat::R, TextureFormat::UNORM_SHORT_12);
1864 case VK_FORMAT_R12X4G12X4_UNORM_2PACK16_KHR: return TextureFormat(TextureFormat::RG, TextureFormat::UNORM_SHORT_12);
1865 case VK_FORMAT_R12X4G12X4B12X4A12X4_UNORM_4PACK16_KHR: return TextureFormat(TextureFormat::RGBA, TextureFormat::UNORM_SHORT_12);
2067 return TextureFormat(TextureFormat::R, TextureFormat::UNORM_SHORT_12);
/external/deqp/framework/common/
H A DtcuTextureUtil.cpp208 case TextureFormat::UNORM_SHORT_12: return TEXTURECHANNELCLASS_UNSIGNED_FIXED_POINT;
379 case TextureFormat::UNORM_SHORT_12: cMin = 0.0f; cMax = 1.0f; break;
564 case TextureFormat::UNORM_SHORT_12: return IVec4(12);
628 case TextureFormat::UNORM_SHORT_12:
H A DtcuTexture.cpp299 case TextureFormat::UNORM_SHORT_12: return (float)((*((const deUint16*)value)) >> 4u) / 4095.0f;
331 case TextureFormat::UNORM_SHORT_12: return (int)((*(((const deUint16*)value))) >> 4u);
363 case TextureFormat::UNORM_SHORT_12: *((deUint16*)dst) = (deUint16)(convertSatRteUint12(src * 4095.0f) << 4u); break;
448 case TextureFormat::UNORM_SHORT_12: *((deUint16*)dst) = (deUint16)(convertSatUint12(src) << 4u); break;
638 case TextureFormat::UNORM_SHORT_12:
708 case TextureFormat::UNORM_SHORT_12: return 2;
3864 "UNORM_SHORT_12"
H A DtcuTexture.hpp114 UNORM_SHORT_12, enumerator in enum:tcu::TextureFormat::ChannelType

Completed in 218 milliseconds