Lines Matching refs:formatA
582 deUint32 getMoreRestrictiveFormat (deUint32 formatA, deUint32 formatB) in getMoreRestrictiveFormat() argument
584 if (formatA == formatB) in getMoreRestrictiveFormat()
585 return formatA; in getMoreRestrictiveFormat()
586 else if (glu::isCompressedFormat(formatA) && isAstcFormat(glu::mapGLCompressedTexFormat(formatA))) in getMoreRestrictiveFormat()
587 return formatA; in getMoreRestrictiveFormat()
590 else if (isFloatFormat(formatA)) in getMoreRestrictiveFormat()
594 return formatA; in getMoreRestrictiveFormat()
598 DE_ASSERT(!isFloatFormat(formatA)); in getMoreRestrictiveFormat()
602 else if (glu::isCompressedFormat(formatA)) in getMoreRestrictiveFormat()
604 return formatA; in getMoreRestrictiveFormat()
611 return formatA; in getMoreRestrictiveFormat()