Searched defs:GrPorterDuffXPFactory (Results 1 - 2 of 2) sorted by relevance

/external/skia/include/gpu/effects/
H A DGrPorterDuffXferProcessor.h17 class GrPorterDuffXPFactory : public GrXPFactory { class in inherits:GrXPFactory
27 GrPorterDuffXPFactory(GrBlendCoeff src, GrBlendCoeff dst);
39 const GrPorterDuffXPFactory& xpf = xpfBase.cast<GrPorterDuffXPFactory>();
/external/skia/src/gpu/effects/
H A DGrPorterDuffXferProcessor.cpp588 GrPorterDuffXPFactory::GrPorterDuffXPFactory(GrBlendCoeff src, GrBlendCoeff dst) function in class:GrPorterDuffXPFactory
590 this->initClassID<GrPorterDuffXPFactory>();
593 GrXPFactory* GrPorterDuffXPFactory::Create(SkXfermode::Mode mode) {
596 static GrPorterDuffXPFactory gClearPDXPF(kZero_GrBlendCoeff, kZero_GrBlendCoeff);
601 static GrPorterDuffXPFactory gSrcPDXPF(kOne_GrBlendCoeff, kZero_GrBlendCoeff);
606 static GrPorterDuffXPFactory gDstPDXPF(kZero_GrBlendCoeff, kOne_GrBlendCoeff);
611 static GrPorterDuffXPFactory gSrcOverPDXPF(kOne_GrBlendCoeff, kISA_GrBlendCoeff);
616 static GrPorterDuffXPFactory gDstOverPDXPF(kIDA_GrBlendCoeff, kOne_GrBlendCoeff);
621 static GrPorterDuffXPFactory gSrcInPDXP
799 GR_DEFINE_XP_FACTORY_TEST(GrPorterDuffXPFactory); variable
[all...]

Completed in 118 milliseconds