Home
last modified time | relevance | path

Searched refs:willReadDstColor (Results 1 – 9 of 9) sorted by relevance

/external/skia/src/gpu/ganesh/
DGrXferProcessor.cpp29 GrXferProcessor::GrXferProcessor(ClassID classID, bool willReadDstColor, in GrXferProcessor() argument
32 , fWillReadDstColor(willReadDstColor) in GrXferProcessor()
36 if (!this->willReadDstColor()) { in hasSecondaryOutput()
46 uint32_t key = this->willReadDstColor() ? 0x1 : 0x0; in addToKey()
134 if (!args.fXP.willReadDstColor()) { in emitCode()
DGrProcessorAnalysis.cpp46 if (fp->willReadDstColor()) { in GrColorFragmentProcessorAnalysis()
53 return this->willReadDstColor() && !caps.shaderCaps()->fDstReadInShaderSupport; in requiresDstTexture()
DGrXferProcessor.h104 if (!this->willReadDstColor()) { in SK_MAKE_BITFIELD_CLASS_OPS()
110 bool willReadDstColor() const { return fWillReadDstColor; } in SK_MAKE_BITFIELD_CLASS_OPS()
143 GrXferProcessor(ClassID classID, bool willReadDstColor, GrProcessorAnalysisCoverage); in SK_MAKE_BITFIELD_CLASS_OPS()
DGrProcessorAnalysis.h126 bool willReadDstColor() const { return fWillReadDstColor; } in willReadDstColor() function
DGrFragmentProcessor.h215 bool willReadDstColor() const {
DGrFragmentProcessor.cpp174 if (child->willReadDstColor()) { in registerChild()
/external/skia/src/gpu/ganesh/glsl/
DGrGLSLProgramBuilder.cpp478 SkASSERT(fp.willReadDstColor() == fFS.fHasReadDstColorThisStage_DebugOnly); in verify()
482 SkASSERT(xp.willReadDstColor() == fFS.fHasReadDstColorThisStage_DebugOnly); in verify()
/external/skia/src/gpu/ganesh/effects/
DGrCustomXfermode.cpp128 SkASSERT(this->willReadDstColor() != this->hasHWBlendEquation()); in makeProgramImpl()
/external/skia/tests/
DGrPorterDuffTest.cpp129 TEST_ASSERT(!xp->willReadDstColor() || in XPInfo()