Lines Matching refs:tessGenLevel
2217 int tessGenLevel = -1; in init() local
2226 gl.getIntegerv(GL_MAX_TESS_GEN_LEVEL, &tessGenLevel); in init()
2231 tessGenLevel = 64; in init()
2235 tessGenLevel = 5; in init()
2240 << "Tessellation level: " << tessGenLevel << ", mode = quad.\n" in init()
2241 …<< "\tEach input patch produces " << (tessGenLevel*tessGenLevel) << " (" << (tessGenLevel*tessGenL… in init()
2244 sources << glu::TessellationControlSource(getTessellationControlSource(tessGenLevel)) in init()
2245 << glu::TessellationEvaluationSource(getTessellationEvaluationSource(tessGenLevel)); in init()
2364 …urce(getGeometryShaderSource(numPrimitivesPerInvocation, geometryShaderInvocations, tessGenLevel)); in init()
2369 …<< "\tTotal program output vertices count per input patch: " << (tessGenLevel*tessGenLevel*2 * geo… in init()
2370 …<< "\tTotal program output primitive count per input patch: " << (tessGenLevel*tessGenLevel*2 * ge… in init()