Home
last modified time | relevance | path

Searched refs:numInputPoints (Results 1 – 5 of 5) sorted by relevance

/third_party/flutter/skia/src/gpu/ccpr/
DGrGSCoverageProcessor.cpp55 int numInputPoints = proc.numInputPoints(); in emitGeometryShader() local
56 SkASSERT(3 == numInputPoints || 4 == numInputPoints); in emitGeometryShader()
58 int inputWidth = (4 == numInputPoints || proc.hasInputWeight()) ? 4 : 3; in emitGeometryShader()
67 SkASSERT(3 == numInputPoints); in emitGeometryShader()
121 g->codeAppendf("float2 p0 = pts[0], p1 = pts[%i];", numInputPoints - 1); in emitGeometryShader()
330 g->codeAppendf("corneridx *= %i;", proc.numInputPoints() - 1); in onEmitGeometryShader()
335 wind.c_str(), proc.numInputPoints() - 1, proc.numInputPoints()); in onEmitGeometryShader()
337 wind.c_str(), proc.numInputPoints() - 1, proc.numInputPoints()); in onEmitGeometryShader()
414 if (4 == this->numInputPoints() || this->hasInputWeight()) { in reset()
DGrSampleMaskProcessor.cpp30 int numInputPoints = proc.numInputPoints(); in onEmitCode() local
31 int inputWidth = (4 == numInputPoints || proc.hasInputWeight()) ? 4 : 3; in onEmitCode()
45 const char* swizzle = (4 == numInputPoints || proc.hasInputWeight()) ? "xyzw" : "xyz"; in onEmitCode()
DGrVSCoverageProcessor.cpp256 int numInputPoints = proc.numInputPoints(); in onEmitCode() local
258 int inputWidth = (4 == numInputPoints || proc.hasInputWeight()) ? 4 : 3; in onEmitCode()
267 SkASSERT(3 == numInputPoints); in onEmitCode()
390 v->codeAppendf("float2 p0 = pts[0], p1 = pts[%i];", numInputPoints - 1); in onEmitCode()
505 if (4 == this->numInputPoints() || this->hasInputWeight()) { in reset()
DGrCCCoverageProcessor.cpp54 if (3 == proc.numInputPoints()) { in CalcWind()
59 SkASSERT(4 == proc.numInputPoints()); in CalcWind()
DGrCCCoverageProcessor.h80 int numInputPoints() const { return PrimitiveType::kCubics == fPrimitiveType ? 4 : 3; } in numInputPoints() function