Searched refs:numInputPoints (Results 1 – 5 of 5) sorted by relevance
55 int numInputPoints = proc.numInputPoints(); in emitGeometryShader() local56 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()
30 int numInputPoints = proc.numInputPoints(); in onEmitCode() local31 int inputWidth = (4 == numInputPoints || proc.hasInputWeight()) ? 4 : 3; in onEmitCode()45 const char* swizzle = (4 == numInputPoints || proc.hasInputWeight()) ? "xyzw" : "xyz"; in onEmitCode()
256 int numInputPoints = proc.numInputPoints(); in onEmitCode() local258 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()
54 if (3 == proc.numInputPoints()) { in CalcWind()59 SkASSERT(4 == proc.numInputPoints()); in CalcWind()
80 int numInputPoints() const { return PrimitiveType::kCubics == fPrimitiveType ? 4 : 3; } in numInputPoints() function