Lines Matching refs:comb
181 bool tryCombination (const FormatCombination& comb);
185 bool SupportedCombinationTest::tryCombination (const FormatCombination& comb) in tryCombination() argument
190 attachTargetToNew(GL_COLOR_ATTACHMENT0, comb.colorKind, comb.colorFmt, in tryCombination()
192 attachTargetToNew(GL_DEPTH_ATTACHMENT, comb.depthKind, comb.depthFmt, in tryCombination()
194 attachTargetToNew(GL_STENCIL_ATTACHMENT, comb.stencilKind, comb.stencilFmt, in tryCombination()
222 FormatCombination comb; in iterate() local
231 comb.colorFmt = *col; in iterate()
232 comb.colorKind = formatKind(*col); in iterate()
235 comb.depthFmt = *dep; in iterate()
236 comb.depthKind = formatKind(*dep); in iterate()
240 comb.stencilFmt = *stc; in iterate()
241 comb.stencilKind = formatKind(*stc); in iterate()
242 succ = tryCombination(comb); in iterate()