Lines Matching refs:comb
297 bool tryCombination (const FormatCombination& comb);
301 bool SupportedCombinationTest::tryCombination (const FormatCombination& comb) in tryCombination() argument
306 attachTargetToNew(GL_COLOR_ATTACHMENT0, comb.colorKind, comb.colorFmt, in tryCombination()
308 attachTargetToNew(GL_DEPTH_ATTACHMENT, comb.depthKind, comb.depthFmt, in tryCombination()
310 attachTargetToNew(GL_STENCIL_ATTACHMENT, comb.stencilKind, comb.stencilFmt, in tryCombination()
338 FormatCombination comb; in iterate() local
347 comb.colorFmt = *col; in iterate()
348 comb.colorKind = formatKind(*col); in iterate()
351 comb.depthFmt = *dep; in iterate()
352 comb.depthKind = formatKind(*dep); in iterate()
356 comb.stencilFmt = *stc; in iterate()
357 comb.stencilKind = formatKind(*stc); in iterate()
358 succ = tryCombination(comb); in iterate()