Home
last modified time | relevance | path

Searched refs:USCALED_INT8 (Results 1 – 5 of 5) sorted by relevance

/external/deqp/external/vulkancts/framework/vulkan/
DvkImageUtil.cpp2793 case FMT_CASE(R, USCALED_INT8): return VK_FORMAT_R8_USCALED; in mapTextureFormat()
2794 case FMT_CASE(RG, USCALED_INT8): return VK_FORMAT_R8G8_USCALED; in mapTextureFormat()
2795 case FMT_CASE(RGB, USCALED_INT8): return VK_FORMAT_R8G8B8_USCALED; in mapTextureFormat()
2796 case FMT_CASE(RGBA, USCALED_INT8): return VK_FORMAT_R8G8B8A8_USCALED; in mapTextureFormat()
2920 …case VK_FORMAT_R8_USCALED: return TextureFormat(TextureFormat::R, TextureFormat::USCALED_INT8); in mapVkFormat()
2928 …se VK_FORMAT_R8G8_USCALED: return TextureFormat(TextureFormat::RG, TextureFormat::USCALED_INT8); in mapVkFormat()
2936 … VK_FORMAT_R8G8B8_USCALED: return TextureFormat(TextureFormat::RGB, TextureFormat::USCALED_INT8); in mapVkFormat()
2944 …K_FORMAT_R8G8B8A8_USCALED: return TextureFormat(TextureFormat::RGBA, TextureFormat::USCALED_INT8); in mapVkFormat()
3016 … VK_FORMAT_B8G8R8_USCALED: return TextureFormat(TextureFormat::BGR, TextureFormat::USCALED_INT8); in mapVkFormat()
3024 …K_FORMAT_B8G8R8A8_USCALED: return TextureFormat(TextureFormat::BGRA, TextureFormat::USCALED_INT8); in mapVkFormat()
[all …]
/external/deqp/framework/common/
DtcuTextureUtil.cpp211 case TextureFormat::USCALED_INT8: return TEXTURECHANNELCLASS_UNSIGNED_INTEGER; in getTextureChannelClass()
404 case TextureFormat::USCALED_INT8: cMin = 0.0f; cMax = 255.0f; break; in getFloatChannelValueRange()
533 case TextureFormat::USCALED_INT8: return UVec4(std::numeric_limits<deUint8>::max()); in getFormatMaxUintValue()
591 case TextureFormat::USCALED_INT8: return IVec4(8); in getChannelBitDepth()
661 case TextureFormat::USCALED_INT8: in getChannelMantissaBitDepth()
DtcuTexture.cpp303 case TextureFormat::USCALED_INT8: return (float)*((const deUint8*)value); in channelToFloat()
341 case TextureFormat::USCALED_INT8: return (int)*((const deUint8*)value); in channelToInt()
377 case TextureFormat::USCALED_INT8: *((deUint8*)dst) = convertSatRte<deUint8> (src); break; in floatToChannel()
468 case TextureFormat::USCALED_INT8: *((deUint8*)dst) = convertSat<deUint8> ((deUint32)src); break; in intToChannel()
657 case TextureFormat::USCALED_INT8: in isValid()
745 case TextureFormat::USCALED_INT8: return 1; in getChannelSize()
DtcuTexture.hpp119 USCALED_INT8, enumerator
/external/deqp/external/vulkancts/modules/vulkan/image/
DvktImageTestsUtil.cpp655 case tcu::TextureFormat::USCALED_INT8: in getShaderImageFormatQualifier()