Home
last modified time | relevance | path

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

/third_party/skia/src/gpu/
DGrXferProcessor.cpp20 GrXferProcessor::GrXferProcessor(ClassID classID, bool willReadDstColor, in GrXferProcessor() argument
23 , fWillReadDstColor(willReadDstColor) in GrXferProcessor()
27 if (!this->willReadDstColor()) { in hasSecondaryOutput()
37 uint32_t key = this->willReadDstColor() ? 0x1 : 0x0; in addToKey()
210 if (!args.fXP.willReadDstColor()) { in emitCode()
DGrProcessorAnalysis.cpp46 if (fp->willReadDstColor()) { in GrColorFragmentProcessorAnalysis()
53 return this->willReadDstColor() && !caps.shaderCaps()->dstReadInShaderSupport(); in requiresDstTexture()
DGrXferProcessor.h105 if (!this->willReadDstColor()) { in GR_MAKE_BITFIELD_CLASS_OPS()
111 bool willReadDstColor() const { return fWillReadDstColor; } in GR_MAKE_BITFIELD_CLASS_OPS()
144 GrXferProcessor(ClassID classID, bool willReadDstColor, GrProcessorAnalysisCoverage); in GR_MAKE_BITFIELD_CLASS_OPS()
DGrProcessorAnalysis.h122 bool willReadDstColor() const { return fWillReadDstColor; } in willReadDstColor() function
DGrFragmentProcessor.h212 bool willReadDstColor() const {
DGrFragmentProcessor.cpp176 if (child->willReadDstColor()) { in registerChild()
/third_party/skia/src/gpu/glsl/
DGrGLSLProgramBuilder.cpp422 SkASSERT(fp.willReadDstColor() == fFS.fHasReadDstColorThisStage_DebugOnly); in verify()
426 SkASSERT(xp.willReadDstColor() == fFS.fHasReadDstColorThisStage_DebugOnly); in verify()
/third_party/skia/src/gpu/effects/
DGrCustomXfermode.cpp119 SkASSERT(this->willReadDstColor() != this->hasHWBlendEquation()); in makeProgramImpl()
/third_party/skia/tests/
DGrPorterDuffTest.cpp104 TEST_ASSERT(!xp->willReadDstColor() || in XPInfo()