/third_party/vk-gl-cts/modules/internal/ |
D | ditTextureFormatTests.cpp | 1717 for (int channelType = 0; channelType < TextureFormat::CHANNELTYPE_LAST; channelType++) in createTextureFormatTests() local 1720 if (TextureFormat::SIGNED_INT64 == channelType || channelType == TextureFormat::UNSIGNED_INT64) in createTextureFormatTests() 1725 …rmat format ((TextureFormat::ChannelOrder)channelOrder, (TextureFormat::ChannelType)channelType); in createTextureFormatTests()
|
/third_party/vk-gl-cts/modules/gles31/functional/ |
D | es31fTextureLevelStateQueryTests.cpp | 1369 glw::GLenum channelType = GL_NONE; in getComponentType() local 1390 case tcu::TEXTURECHANNELCLASS_SIGNED_FIXED_POINT: channelType = GL_SIGNED_NORMALIZED; break; in getComponentType() 1391 case tcu::TEXTURECHANNELCLASS_UNSIGNED_FIXED_POINT: channelType = GL_UNSIGNED_NORMALIZED; break; in getComponentType() 1392 case tcu::TEXTURECHANNELCLASS_SIGNED_INTEGER: channelType = GL_INT; break; in getComponentType() 1393 case tcu::TEXTURECHANNELCLASS_UNSIGNED_INTEGER: channelType = GL_UNSIGNED_INT; break; in getComponentType() 1394 case tcu::TEXTURECHANNELCLASS_FLOATING_POINT: channelType = GL_FLOAT; break; in getComponentType() 1411 return channelType; in getComponentType() 1423 return channelType; in getComponentType() 1434 return channelType; in getComponentType() 1443 return channelType; in getComponentType() [all …]
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/image/ |
D | vktImageMismatchedWriteOpTests.cpp | 529 auto channelType = TextureFormat::ChannelType::CHANNELTYPE_LAST; in makeChannelType() local 533 …channelType = doubled ? TextureFormat::ChannelType::SIGNED_INT64 : TextureFormat::ChannelType::SIG… in makeChannelType() 536 …channelType = doubled ? TextureFormat::ChannelType::UNSIGNED_INT64 : TextureFormat::ChannelType::U… in makeChannelType() 539 channelType = doubled ? TextureFormat::ChannelType::FLOAT64 : TextureFormat::ChannelType::FLOAT; in makeChannelType() 541 return channelType; in makeChannelType()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/image/ |
D | vktImageMismatchedWriteOpTests.cpp | 529 auto channelType = TextureFormat::ChannelType::CHANNELTYPE_LAST; in makeChannelType() local 533 …channelType = doubled ? TextureFormat::ChannelType::SIGNED_INT64 : TextureFormat::ChannelType::SIG… in makeChannelType() 536 …channelType = doubled ? TextureFormat::ChannelType::UNSIGNED_INT64 : TextureFormat::ChannelType::U… in makeChannelType() 539 channelType = doubled ? TextureFormat::ChannelType::FLOAT64 : TextureFormat::ChannelType::FLOAT; in makeChannelType() 541 return channelType; in makeChannelType()
|
/third_party/vk-gl-cts/framework/common/ |
D | tcuTextureUtil.cpp | 162 TextureChannelClass getTextureChannelClass (TextureFormat::ChannelType channelType) in getTextureChannelClass() argument 167 switch (channelType) in getTextureChannelClass() 357 static Vec2 getFloatChannelValueRange (TextureFormat::ChannelType channelType) in getFloatChannelValueRange() argument 365 switch (channelType) in getFloatChannelValueRange() 542 static IVec4 getChannelBitDepth (TextureFormat::ChannelType channelType) in getChannelBitDepth() argument 547 switch (channelType) in getChannelBitDepth() 619 static IVec4 getChannelMantissaBitDepth (TextureFormat::ChannelType channelType) in getChannelMantissaBitDepth() argument 624 switch (channelType) in getChannelMantissaBitDepth() 667 return getChannelBitDepth(channelType); in getChannelMantissaBitDepth()
|
D | tcuTextureUtil.hpp | 69 TextureChannelClass getTextureChannelClass (TextureFormat::ChannelType channelType);
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/pipeline/ |
D | vktPipelineImageSamplingInstance.cpp | 1533 tcu::TextureFormat::ChannelType channelType = tcu::TextureFormat::CHANNELTYPE_LAST; in verifyImage() local 1538 channelType = tcu::TextureFormat::UNSIGNED_INT8; in verifyImage() 1547 channelType = tcu::TextureFormat::UNORM_INT16; in verifyImage() 1551 channelType = tcu::TextureFormat::UNORM_INT24; in verifyImage() 1554 channelType = tcu::TextureFormat::FLOAT; in verifyImage() 1561 textureCopy = m_texture->copy(tcu::TextureFormat(channelOrder, channelType)); in verifyImage()
|
/third_party/vk-gl-cts/modules/glshared/ |
D | glsShaderExecUtil.cpp | 549 tcu::TextureFormat::ChannelType channelType; in getRenderbufferFormatForOutput() local 553 case glu::TYPE_UINT: channelType = tcu::TextureFormat::UNSIGNED_INT32; break; in getRenderbufferFormatForOutput() 554 case glu::TYPE_INT: channelType = tcu::TextureFormat::SIGNED_INT32; break; in getRenderbufferFormatForOutput() 555 case glu::TYPE_BOOL: channelType = tcu::TextureFormat::SIGNED_INT32; break; in getRenderbufferFormatForOutput() 556 …case glu::TYPE_FLOAT: channelType = useIntOutputs ? tcu::TextureFormat::UNSIGNED_INT32 : tcu::Text… in getRenderbufferFormatForOutput() 563 return tcu::TextureFormat(channelOrderMap[numComps-1], channelType); in getRenderbufferFormatForOutput()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/pipeline/ |
D | vktPipelineImageSamplingInstance.cpp | 1533 tcu::TextureFormat::ChannelType channelType = tcu::TextureFormat::CHANNELTYPE_LAST; in verifyImage() local 1538 channelType = tcu::TextureFormat::UNSIGNED_INT8; in verifyImage() 1547 channelType = tcu::TextureFormat::UNORM_INT16; in verifyImage() 1551 channelType = tcu::TextureFormat::UNORM_INT24; in verifyImage() 1554 channelType = tcu::TextureFormat::FLOAT; in verifyImage() 1561 textureCopy = m_texture->copy(tcu::TextureFormat(channelOrder, channelType)); in verifyImage()
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/shaderexecutor/ |
D | vktShaderExecutor.cpp | 684 tcu::TextureFormat::ChannelType channelType; in getRenderbufferFormatForOutput() local 688 case glu::TYPE_UINT: channelType = tcu::TextureFormat::UNSIGNED_INT32; break; in getRenderbufferFormatForOutput() 689 case glu::TYPE_INT: channelType = tcu::TextureFormat::SIGNED_INT32; break; in getRenderbufferFormatForOutput() 690 case glu::TYPE_BOOL: channelType = tcu::TextureFormat::SIGNED_INT32; break; in getRenderbufferFormatForOutput() 691 …case glu::TYPE_FLOAT: channelType = useIntOutputs ? tcu::TextureFormat::UNSIGNED_INT32 : tcu::Text… in getRenderbufferFormatForOutput() 692 …case glu::TYPE_FLOAT16: channelType = useIntOutputs ? tcu::TextureFormat::UNSIGNED_INT32 : tcu::Te… in getRenderbufferFormatForOutput() 699 return tcu::TextureFormat(channelOrderMap[numComps-1], channelType); in getRenderbufferFormatForOutput()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/shaderexecutor/ |
D | vktShaderExecutor.cpp | 684 tcu::TextureFormat::ChannelType channelType; in getRenderbufferFormatForOutput() local 688 case glu::TYPE_UINT: channelType = tcu::TextureFormat::UNSIGNED_INT32; break; in getRenderbufferFormatForOutput() 689 case glu::TYPE_INT: channelType = tcu::TextureFormat::SIGNED_INT32; break; in getRenderbufferFormatForOutput() 690 case glu::TYPE_BOOL: channelType = tcu::TextureFormat::SIGNED_INT32; break; in getRenderbufferFormatForOutput() 691 …case glu::TYPE_FLOAT: channelType = useIntOutputs ? tcu::TextureFormat::UNSIGNED_INT32 : tcu::Text… in getRenderbufferFormatForOutput() 692 …case glu::TYPE_FLOAT16: channelType = useIntOutputs ? tcu::TextureFormat::UNSIGNED_INT32 : tcu::Te… in getRenderbufferFormatForOutput() 699 return tcu::TextureFormat(channelOrderMap[numComps-1], channelType); in getRenderbufferFormatForOutput()
|
/third_party/vk-gl-cts/framework/referencerenderer/ |
D | rrRenderer.cpp | 1005 const tcu::TextureFormat::ChannelType channelType = format.type; in findPrimitiveMinimumResolvableDifference() local 1006 const tcu::TextureChannelClass channelClass = tcu::getTextureChannelClass(channelType); in findPrimitiveMinimumResolvableDifference() 1010 return getFloatingPointMinimumResolvableDifference(maxZvalue, channelType); in findPrimitiveMinimumResolvableDifference()
|
/third_party/libabigail/tests/data/test-read-dwarf/ |
D | test-libandroid.so.abi | 22405 …<parameter type-id='95e97e5e' name='channelType' filepath='frameworks/base/native/android/sensor.c…
|