Lines Matching refs:tessGenLevel
2191 int tessGenLevel = -1; in init() local
2200 gl.getIntegerv(GL_MAX_TESS_GEN_LEVEL, &tessGenLevel); in init()
2205 tessGenLevel = 64; in init()
2209 tessGenLevel = 5; in init()
2214 << "Tessellation level: " << tessGenLevel << ", mode = quad.\n" in init()
2215 …<< "\tEach input patch produces " << (tessGenLevel*tessGenLevel) << " (" << (tessGenLevel*tessGenL… in init()
2218 sources << glu::TessellationControlSource(getTessellationControlSource(tessGenLevel)) in init()
2219 << glu::TessellationEvaluationSource(getTessellationEvaluationSource(tessGenLevel)); in init()
2338 …urce(getGeometryShaderSource(numPrimitivesPerInvocation, geometryShaderInvocations, tessGenLevel)); in init()
2343 …<< "\tTotal program output vertices count per input patch: " << (tessGenLevel*tessGenLevel*2 * geo… in init()
2344 …<< "\tTotal program output primitive count per input patch: " << (tessGenLevel*tessGenLevel*2 * ge… in init()