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