Home
last modified time | relevance | path

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

/external/skia/src/gpu/
DGrXferProcessor.cpp19 bool willReadDstColor, in GrXferProcessor() argument
21 : fWillReadDstColor(willReadDstColor) in GrXferProcessor()
22 , fDstReadUsesMixedSamples(willReadDstColor && hasMixedSamples) in GrXferProcessor()
25 SkASSERT(willReadDstColor); in GrXferProcessor()
38 if (!this->willReadDstColor()) { in hasSecondaryOutput()
46 if (!this->willReadDstColor()) { in getBlendInfo()
55 uint32_t key = this->willReadDstColor() ? 0x1 : 0x0; in getGLSLProcessorKey()
DGrXferProcessor.h162 bool willReadDstColor() const { return fWillReadDstColor; } in willReadDstColor() function
222 GrXferProcessor(const DstTexture*, bool willReadDstColor, bool hasMixedSamples);
/external/skia/src/gpu/glsl/
DGrGLSLXferProcessor.cpp17 if (!args.fXP.willReadDstColor()) { in emitCode()
DGrGLSLProgramBuilder.cpp424 SkASSERT(fFS.hasReadDstColor() == xp.willReadDstColor()); in verify()
/external/skia/src/gpu/effects/
DGrCustomXfermode.cpp183 SkASSERT(this->willReadDstColor() != this->hasHWBlendEquation()); in createGLSLInstance()
/external/skia/tests/
DGrPorterDuffTest.cpp79 TEST_ASSERT(!xp->willReadDstColor()); in XPInfo()