/external/skia/src/gpu/ |
D | GrXferProcessor.cpp | 15 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/ |
D | GrPorterDuffXferProcessor.cpp | 39 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 …]
|
D | GrCustomXfermode.cpp | 512 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
|
D | GrDisableColorXP.h | 40 bool willReadDstColor(const GrDrawTargetCaps& caps, in willReadDstColor() function
|
D | GrCustomXfermodePriv.h | 76 bool willReadDstColor(const GrDrawTargetCaps& caps,
|
/external/skia/src/effects/ |
D | SkArithmeticMode_gpu.cpp | 165 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()
|
D | SkArithmeticMode_gpu.h | 95 bool willReadDstColor(const GrDrawTargetCaps& caps, in willReadDstColor() function
|
/external/skia/include/gpu/ |
D | GrXferProcessor.h | 203 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/ |
D | GrCoverageSetOpXP.h | 42 bool willReadDstColor(const GrDrawTargetCaps& /*caps*/, in willReadDstColor() function
|
D | GrPorterDuffXferProcessor.h | 34 bool willReadDstColor(const GrDrawTargetCaps& caps,
|
/external/skia/src/gpu/gl/builders/ |
D | GrGLProgramBuilder.cpp | 374 SkASSERT(fFS.hasReadDstColor() == xp.willReadDstColor()); in verify()
|