Lines Matching refs:formatA
312 deUint32 getMoreRestrictiveFormat (deUint32 formatA, deUint32 formatB) in getMoreRestrictiveFormat() argument
314 if (formatA == formatB) in getMoreRestrictiveFormat()
315 return formatA; in getMoreRestrictiveFormat()
316 else if (glu::isCompressedFormat(formatA) && isAstcFormat(glu::mapGLCompressedTexFormat(formatA))) in getMoreRestrictiveFormat()
317 return formatA; in getMoreRestrictiveFormat()
320 else if (isFloatFormat(formatA)) in getMoreRestrictiveFormat()
324 return formatA; in getMoreRestrictiveFormat()
328 DE_ASSERT(!isFloatFormat(formatA)); in getMoreRestrictiveFormat()
332 else if (glu::isCompressedFormat(formatA)) in getMoreRestrictiveFormat()
334 return formatA; in getMoreRestrictiveFormat()
341 return formatA; in getMoreRestrictiveFormat()