Lines Matching refs:tessLevel
83 std::string getTessellationControlSource (int tessLevel);
84 std::string getTessellationEvaluationSource (int tessLevel);
444 std::string GridRenderCase::getTessellationControlSource (int tessLevel) in getTessellationControlSource() argument
455 " gl_TessLevelOuter[0] = " << tessLevel << ".0;\n" in getTessellationControlSource()
456 " gl_TessLevelOuter[1] = " << tessLevel << ".0;\n" in getTessellationControlSource()
457 " gl_TessLevelOuter[2] = " << tessLevel << ".0;\n" in getTessellationControlSource()
458 " gl_TessLevelOuter[3] = " << tessLevel << ".0;\n" in getTessellationControlSource()
459 " gl_TessLevelInner[0] = " << tessLevel << ".0;\n" in getTessellationControlSource()
460 " gl_TessLevelInner[1] = " << tessLevel << ".0;\n" in getTessellationControlSource()
466 std::string GridRenderCase::getTessellationEvaluationSource (int tessLevel) in getTessellationEvaluationSource() argument
482 " v_tessellationGridPosition = ivec2(round(gl_TessCoord.xy * float(" << tessLevel << ")));\n" in getTessellationEvaluationSource()