Lines Matching refs:formatA
300 deUint32 getMoreRestrictiveFormat (deUint32 formatA, deUint32 formatB) in getMoreRestrictiveFormat() argument
302 if (formatA == formatB) in getMoreRestrictiveFormat()
303 return formatA; in getMoreRestrictiveFormat()
304 else if (glu::isCompressedFormat(formatA) && isAstcFormat(glu::mapGLCompressedTexFormat(formatA))) in getMoreRestrictiveFormat()
305 return formatA; in getMoreRestrictiveFormat()
308 else if (isFloatFormat(formatA)) in getMoreRestrictiveFormat()
312 return formatA; in getMoreRestrictiveFormat()
316 DE_ASSERT(!isFloatFormat(formatA)); in getMoreRestrictiveFormat()
320 else if (glu::isCompressedFormat(formatA)) in getMoreRestrictiveFormat()
322 return formatA; in getMoreRestrictiveFormat()
329 return formatA; in getMoreRestrictiveFormat()