Home
last modified time | relevance | path

Searched refs:usesVaryingCoords (Results 1 – 8 of 8) sorted by relevance

/external/skia/src/gpu/
DGrPaint.h97 bool usesVaryingCoords() const { in usesVaryingCoords() function
98 return (fColorFragmentProcessor && fColorFragmentProcessor->usesVaryingCoords()) || in usesVaryingCoords()
99 (fCoverageFragmentProcessor && fCoverageFragmentProcessor->usesVaryingCoords()); in usesVaryingCoords()
DGrProcessorSet.h46 bool usesVaryingCoords() const { in usesVaryingCoords() function
47 return (fColorFragmentProcessor && fColorFragmentProcessor->usesVaryingCoords()) || in usesVaryingCoords()
48 (fCoverageFragmentProcessor && fCoverageFragmentProcessor->usesVaryingCoords()); in usesVaryingCoords()
DGrProcessorAnalysis.cpp43 if (fp->usesVaryingCoords()) { in GrColorFragmentProcessorAnalysis()
DGrProcessorSet.cpp132 coverageUsesLocalCoords |= fCoverageFragmentProcessor->usesVaryingCoords(); in finalize()
138 coverageUsesLocalCoords |= clipFP->usesVaryingCoords(); in finalize()
DGrFragmentProcessor.h166 bool usesVaryingCoords() const { in usesVaryingCoords() function
DGrSurfaceDrawContext.cpp808 (!paint.usesVaryingCoords() || quad.fLocal.asRect(&croppedLocal))) { in fillRectToRect()
/external/skia/src/gpu/tessellate/
DGrStrokeTessellateOp.cpp155 if (fProcessors.usesVaryingCoords()) { in canUseHardwareTessellation()
/external/skia/tests/
DProcessorTest.cpp820 REPORTER_ASSERT(reporter, fp.usesVaryingCoords() == clone.usesVaryingCoords(), in assert_processor_equality()