Searched refs:xpf (Results 1 - 9 of 9) sorted by relevance

/external/skia/include/gpu/effects/
H A DGrPorterDuffXferProcessor.h39 const GrPorterDuffXPFactory& xpf = xpfBase.cast<GrPorterDuffXPFactory>(); variable
40 return (fSrcCoeff == xpf.fSrcCoeff && fDstCoeff == xpf.fDstCoeff);
H A DGrCoverageSetOpXP.h49 const GrCoverageSetOpXPFactory& xpf = xpfBase.cast<GrCoverageSetOpXPFactory>(); variable
50 return fRegionOp == xpf.fRegionOp;
/external/skia/src/effects/
H A DSkArithmeticMode_gpu.h102 const GrArithmeticXPFactory& xpf = xpfBase.cast<GrArithmeticXPFactory>(); variable
103 if (fK1 != xpf.fK1 ||
104 fK2 != xpf.fK2 ||
105 fK3 != xpf.fK3 ||
106 fK4 != xpf.fK4 ||
107 fEnforcePMColor != xpf.fEnforcePMColor) {
H A DSkArithmeticMode.cpp250 bool SkArithmeticMode_scalar::asXPFactory(GrXPFactory** xpf) const {
251 if (xpf) {
252 *xpf = GrArithmeticXPFactory::Create(SkScalarToFloat(fK[0]),
/external/skia/src/gpu/effects/
H A DGrCustomXfermodePriv.h81 const GrCustomXPFactory& xpf = xpfBase.cast<GrCustomXPFactory>(); variable
82 return fMode == xpf.fMode;
/external/libexif/doc/
H A DMakefile.am55 | (cd "$(DESTDIR)$(docdir)" && tar xpf -)
70 | (cd "$(DESTDIR)$(docdir)" && tar xpf -)
/external/skia/tests/
H A DGLProgramsTest.cpp141 SkAutoTUnref<const GrXPFactory> xpf(
143 SkASSERT(xpf);
144 pipelineBuilder->setXPFactory(xpf.get());
/external/skia/include/core/
H A DSkXfermode.h215 to call this with xpf NULL to simply test the return value. If xpf is non-NULL then the
216 xfermode may optionally allocate a factory to return to the caller as *xpf. The caller
217 will install it and own a ref to it. Since the xfermode may or may not assign *xpf, the
218 caller should set *xpf to NULL beforehand. XferProcessors cannot use a background texture.
220 virtual bool asXPFactory(GrXPFactory** xpf) const;
224 kSrcOver_Mode. It is legal to call this with xpf param NULL to simply test the return value.
/external/skia/src/core/
H A DSkXfermode.cpp682 bool SkXfermode::AsXPFactory(SkXfermode* xfermode, GrXPFactory** xpf) { argument
684 if (xpf) {
685 *xpf = GrPorterDuffXPFactory::Create(kSrcOver_Mode);
689 return xfermode->asXPFactory(xpf);
693 bool SkXfermode::AsXPFactory(SkXfermode* xfermode, GrXPFactory** xpf) { argument

Completed in 274 milliseconds