Chromium Code Reviews| Index: gm/texdata.cpp |
| diff --git a/gm/texdata.cpp b/gm/texdata.cpp |
| index efe8c4d7304c33e7f5bcf717782f4b4f34881ee6..1b8909a0ff0b7f59229a99228d5fd5fe4787a69f 100644 |
| --- a/gm/texdata.cpp |
| +++ b/gm/texdata.cpp |
| @@ -12,8 +12,9 @@ |
| #if SK_SUPPORT_GPU |
| #include "GrContext.h" |
| -#include "effects/GrSimpleTextureEffect.h" |
| #include "SkColorPriv.h" |
| +#include "effects/GrPorterDuffXferProcessor.h" |
| +#include "effects/GrSimpleTextureEffect.h" |
| namespace skiagm { |
| @@ -98,7 +99,9 @@ protected: |
| ctx->setRenderTarget(target); |
| GrPaint paint; |
| - paint.setBlendFunc(kOne_GrBlendCoeff, kISA_GrBlendCoeff); |
| + GrXPFactory* xpFactory = GrPorterDuffXPFactory::Create(SkXfermode::kSrcOver_Mode); |
|
bsalomon
2014/12/04 21:54:24
I think we should have a shortcut on GrPaint/GrDS,
egdaniel
2014/12/08 14:52:06
Done.
|
| + paint.setXPFactory(xpFactory)->unref(); |
| + |
| SkMatrix vm; |
| if (i) { |
| vm.setRotate(90 * SK_Scalar1, |