HomeSort by relevance Sort by last modified time
    Searched defs:GrPrimitiveType (Results 1 - 2 of 2) sorted by null

  /external/skia/include/private/
GrTypesPriv.h 82 enum class GrPrimitiveType {
90 static constexpr int kNumGrPrimitiveTypes = (int)GrPrimitiveType::kLinesAdjacency + 1;
92 static constexpr bool GrIsPrimTypeLines(GrPrimitiveType type) {
93 return GrPrimitiveType::kLines == type ||
94 GrPrimitiveType::kLineStrip == type ||
95 GrPrimitiveType::kLinesAdjacency == type;
98 static constexpr bool GrIsPrimTypeTris(GrPrimitiveType type) {
99 return GrPrimitiveType::kTriangles == type || GrPrimitiveType::kTriangleStrip == type;
102 static constexpr bool GrPrimTypeRequiresGeometryShaderSupport(GrPrimitiveType type)
    [all...]
  /external/skqp/include/private/
GrTypesPriv.h 82 enum class GrPrimitiveType {
90 static constexpr int kNumGrPrimitiveTypes = (int)GrPrimitiveType::kLinesAdjacency + 1;
92 static constexpr bool GrIsPrimTypeLines(GrPrimitiveType type) {
93 return GrPrimitiveType::kLines == type ||
94 GrPrimitiveType::kLineStrip == type ||
95 GrPrimitiveType::kLinesAdjacency == type;
98 static constexpr bool GrIsPrimTypeTris(GrPrimitiveType type) {
99 return GrPrimitiveType::kTriangles == type || GrPrimitiveType::kTriangleStrip == type;
102 static constexpr bool GrPrimTypeRequiresGeometryShaderSupport(GrPrimitiveType type)
    [all...]

Completed in 97 milliseconds