Home
last modified time | relevance | path

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

/external/skia/src/gpu/
DGrXferProcessor.cpp15 GrXferProcessor::GrXferProcessor(const GrDeviceCoordTexture* dstCopy, bool willReadDstColor) in GrXferProcessor() argument
16 : fWillReadDstColor(willReadDstColor) in GrXferProcessor()
45 uint32_t key = this->willReadDstColor() ? 0x1 : 0x0; in getGLProcessorKey()
168 if (this->willReadDstColor(caps, colorPOI, coveragePOI)) { in createXferProcessor()
183 return (this->willReadDstColor(caps, colorPOI, coveragePOI) in willNeedDstCopy()
/external/skia/src/gpu/effects/
DGrPorterDuffXferProcessor.cpp39 bool willReadDstColor) { in Create() argument
41 willReadDstColor)); in Create()
92 const GrDeviceCoordTexture* dstCopy, bool willReadDstColor);
103 if (!this->willReadDstColor()) { in onGetBlendInfo()
198 if (xp.willReadDstColor()) { in GenKey()
209 SkASSERT(!xp.willReadDstColor()); in onEmitCode()
249 SkASSERT(xp.willReadDstColor()); in onEmitCode()
281 bool willReadDstColor) in PorterDuffXferProcessor() argument
282 : INHERITED(dstCopy, willReadDstColor) in PorterDuffXferProcessor()
319 if (this->willReadDstColor()) { in calcOutputTypes()
[all …]
DGrCustomXfermode.cpp512 bool willReadDstColor) { in Create() argument
516 return SkNEW_ARGS(CustomXP, (mode, dstCopy, willReadDstColor)); in Create()
537 CustomXP(SkXfermode::Mode mode, const GrDeviceCoordTexture* dstCopy, bool willReadDstColor);
630 bool willReadDstColor) in CustomXP() argument
631 : INHERITED(dstCopy, willReadDstColor), in CustomXP()
642 SkASSERT(this->willReadDstColor() != this->hasHWBlendEquation()); in createGLInstance()
794 return CustomXP::Create(fMode, dstCopy, this->willReadDstColor(caps, colorPOI, coveragePOI)); in onCreateXferProcessor()
797 bool GrCustomXPFactory::willReadDstColor(const GrDrawTargetCaps& caps, in willReadDstColor() function in GrCustomXPFactory
DGrDisableColorXP.h40 bool willReadDstColor(const GrDrawTargetCaps& caps, in willReadDstColor() function
DGrCustomXfermodePriv.h76 bool willReadDstColor(const GrDrawTargetCaps& caps,
/external/skia/src/effects/
DSkArithmeticMode_gpu.cpp165 bool willReadDstColor) { in Create() argument
167 willReadDstColor)); in Create()
186 const GrDeviceCoordTexture* dstCopy, bool willReadDstColor);
266 const GrDeviceCoordTexture* dstCopy, bool willReadDstColor) in ArithmeticXP() argument
267 : INHERITED(dstCopy, willReadDstColor) in ArithmeticXP()
306 this->willReadDstColor(caps, colorPOI, coveragePOI)); in onCreateXferProcessor()
DSkArithmeticMode_gpu.h95 bool willReadDstColor(const GrDrawTargetCaps& caps, in willReadDstColor() function
/external/skia/include/gpu/
DGrXferProcessor.h203 bool willReadDstColor() const { return fWillReadDstColor; } in willReadDstColor() function
260 GrXferProcessor(const GrDeviceCoordTexture* dstCopy, bool willReadDstColor);
382 virtual bool willReadDstColor(const GrDrawTargetCaps& caps,
/external/skia/include/gpu/effects/
DGrCoverageSetOpXP.h42 bool willReadDstColor(const GrDrawTargetCaps& /*caps*/, in willReadDstColor() function
DGrPorterDuffXferProcessor.h34 bool willReadDstColor(const GrDrawTargetCaps& caps,
/external/skia/src/gpu/gl/builders/
DGrGLProgramBuilder.cpp374 SkASSERT(fFS.hasReadDstColor() == xp.willReadDstColor()); in verify()