Home | History | Annotate | Download | only in image

Lines Matching full:textureformat

503 std::string getShaderImageType (const tcu::TextureFormat& format, const ImageType imageType)
527 std::string getShaderImageFormatQualifier (const tcu::TextureFormat& format)
534 case tcu::TextureFormat::R: orderPart = "r"; break;
535 case tcu::TextureFormat::RG: orderPart = "rg"; break;
536 case tcu::TextureFormat::RGB: orderPart = "rgb"; break;
537 case tcu::TextureFormat::RGBA: orderPart = "rgba"; break;
546 case tcu::TextureFormat::FLOAT: typePart = "32f"; break;
547 case tcu::TextureFormat::HALF_FLOAT: typePart = "16f"; break;
549 case tcu::TextureFormat::UNSIGNED_INT32: typePart = "32ui"; break;
550 case tcu::TextureFormat::UNSIGNED_INT16: typePart = "16ui"; break;
551 case tcu::TextureFormat::UNSIGNED_INT8: typePart = "8ui"; break;
553 case tcu::TextureFormat::SIGNED_INT32: typePart = "32i"; break;
554 case tcu::TextureFormat::SIGNED_INT16: typePart = "16i"; break;
555 case tcu::TextureFormat::SIGNED_INT8: typePart = "8i"; break;
557 case tcu::TextureFormat::UNORM_INT16: typePart = "16"; break;
558 case tcu::TextureFormat::UNORM_INT8: typePart = "8"; break;
560 case tcu::TextureFormat::SNORM_INT16: typePart = "16_snorm"; break;
561 case tcu::TextureFormat::SNORM_INT8: typePart = "8_snorm"; break;