Home | History | Annotate | Download | only in functional

Lines Matching defs:comb

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