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.cpp2586 case FMT_CASE(R, USCALED_INT8): return VK_FORMAT_R8_USCALED; in mapTextureFormat()
2587 case FMT_CASE(RG, USCALED_INT8): return VK_FORMAT_R8G8_USCALED; in mapTextureFormat()
2588 case FMT_CASE(RGB, USCALED_INT8): return VK_FORMAT_R8G8B8_USCALED; in mapTextureFormat()
2589 case FMT_CASE(RGBA, USCALED_INT8): return VK_FORMAT_R8G8B8A8_USCALED; in mapTextureFormat()
2710 …case VK_FORMAT_R8_USCALED: return TextureFormat(TextureFormat::R, TextureFormat::USCALED_INT8); in mapVkFormat()
2718 …se VK_FORMAT_R8G8_USCALED: return TextureFormat(TextureFormat::RG, TextureFormat::USCALED_INT8); in mapVkFormat()
2726 … VK_FORMAT_R8G8B8_USCALED: return TextureFormat(TextureFormat::RGB, TextureFormat::USCALED_INT8); in mapVkFormat()
2734 …K_FORMAT_R8G8B8A8_USCALED: return TextureFormat(TextureFormat::RGBA, TextureFormat::USCALED_INT8); in mapVkFormat()
2800 … VK_FORMAT_B8G8R8_USCALED: return TextureFormat(TextureFormat::BGR, TextureFormat::USCALED_INT8); in mapVkFormat()
2808 …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()
589 case TextureFormat::USCALED_INT8: return IVec4(8); in getChannelBitDepth()
659 case TextureFormat::USCALED_INT8: in getChannelMantissaBitDepth()
DtcuTexture.cpp300 case TextureFormat::USCALED_INT8: return (float)*((const deUint8*)value); in channelToFloat()
336 case TextureFormat::USCALED_INT8: return (int)*((const deUint8*)value); in channelToInt()
372 case TextureFormat::USCALED_INT8: *((deUint8*)dst) = convertSatRte<deUint8> (src); break; in floatToChannel()
461 case TextureFormat::USCALED_INT8: *((deUint8*)dst) = convertSat<deUint8> ((deUint32)src); break; in intToChannel()
648 case TextureFormat::USCALED_INT8: in isValid()
735 case TextureFormat::USCALED_INT8: return 1; in getChannelSize()
DtcuTexture.hpp118 USCALED_INT8, enumerator
/external/deqp/external/vulkancts/modules/vulkan/image/
DvktImageTestsUtil.cpp631 case tcu::TextureFormat::USCALED_INT8: in getShaderImageFormatQualifier()