Lines Matching refs:tessGenLevel
139 int tessGenLevel = -1;
148 gl.getIntegerv(GL_MAX_TESS_GEN_LEVEL, &tessGenLevel);
153 tessGenLevel = 64;
157 tessGenLevel = 5;
162 << "Tessellation level: " << tessGenLevel << ", mode = quad.\n"
163 << "\tEach input patch produces " << (tessGenLevel*tessGenLevel) << " (" << (tessGenLevel*tessGenLevel*2) << " triangles)\n"
166 sources << glu::TessellationControlSource(getTessellationControlSource(tessGenLevel))
167 << glu::TessellationEvaluationSource(getTessellationEvaluationSource(tessGenLevel));
276 << "\tTotal program output vertices count per input patch: " << (tessGenLevel*tessGenLevel*2 * geometryVerticesPerPrimitive) << "\n"
277 << "\tTotal program output primitive count per input patch: " << (tessGenLevel*tessGenLevel*2 * geometryPrimitivesOutPerPrimitive) << "\n"