Home | History | Annotate | Download | only in functional

Lines Matching refs:pointMode

1581 const char* FeedbackPrimitiveTypeCase::getTessellationOutputDescription (TessellationOutputType tessellationOutput, TessellationPointMode pointMode)
1585 case TESSELLATION_OUT_TRIANGLES: return (pointMode) ? ("points (triangles in point mode)") : ("triangles");
1586 case TESSELLATION_OUT_QUADS: return (pointMode) ? ("points (quads in point mode)") : ("quads");
1587 case TESSELLATION_OUT_ISOLINES: return (pointMode) ? ("points (isolines in point mode)") : ("isolines");
1594 const char* FeedbackPrimitiveTypeCase::getGeometryInputDescription (TessellationOutputType tessellationOutput, TessellationPointMode pointMode)
1598 case TESSELLATION_OUT_TRIANGLES: return (pointMode) ? ("points") : ("triangles");
1599 case TESSELLATION_OUT_QUADS: return (pointMode) ? ("points") : ("triangles");
1600 case TESSELLATION_OUT_ISOLINES: return (pointMode) ? ("points") : ("lines");