Lines Matching refs:formatA
318 deUint32 getMoreRestrictiveFormat (deUint32 formatA, deUint32 formatB) in getMoreRestrictiveFormat() argument
320 if (formatA == formatB) in getMoreRestrictiveFormat()
321 return formatA; in getMoreRestrictiveFormat()
322 else if (glu::isCompressedFormat(formatA) && isAstcFormat(glu::mapGLCompressedTexFormat(formatA))) in getMoreRestrictiveFormat()
323 return formatA; in getMoreRestrictiveFormat()
326 else if (isFloatFormat(formatA)) in getMoreRestrictiveFormat()
330 return formatA; in getMoreRestrictiveFormat()
334 DE_ASSERT(!isFloatFormat(formatA)); in getMoreRestrictiveFormat()
338 else if (glu::isCompressedFormat(formatA)) in getMoreRestrictiveFormat()
340 return formatA; in getMoreRestrictiveFormat()
347 return formatA; in getMoreRestrictiveFormat()