Home | History | Annotate | Download | only in synchronization

Lines Matching defs:typePart

417 	const char*					typePart	= DE_NULL;
433 case tcu::TextureFormat::FLOAT: typePart = "32f"; break;
434 case tcu::TextureFormat::HALF_FLOAT: typePart = "16f"; break;
436 case tcu::TextureFormat::UNSIGNED_INT32: typePart = "32ui"; break;
437 case tcu::TextureFormat::UNSIGNED_INT16: typePart = "16ui"; break;
438 case tcu::TextureFormat::UNSIGNED_INT8: typePart = "8ui"; break;
440 case tcu::TextureFormat::SIGNED_INT32: typePart = "32i"; break;
441 case tcu::TextureFormat::SIGNED_INT16: typePart = "16i"; break;
442 case tcu::TextureFormat::SIGNED_INT8: typePart = "8i"; break;
444 case tcu::TextureFormat::UNORM_INT16: typePart = "16"; break;
445 case tcu::TextureFormat::UNORM_INT8: typePart = "8"; break;
447 case tcu::TextureFormat::SNORM_INT16: typePart = "16_snorm"; break;
448 case tcu::TextureFormat::SNORM_INT8: typePart = "8_snorm"; break;
455 return std::string(orderPart) + typePart;