diff options
author | joshualitt <joshualitt@chromium.org> | 2014-09-16 07:17:28 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2014-09-16 07:17:28 -0700 |
commit | 08da4f22d790cfc51bbeb10b4b84dab49cf0eaec (patch) | |
tree | eb2c5cc2e59b708065484e18c01f459f6ef59ee9 /tests | |
parent | 8ddbe8b9366c8c59c4fb55f01f253de8a0b37d6e (diff) |
Revert of removing GrDrawEffect (patchset #4 id:60001 of https://codereview.chromium.org/571163002/)
Reason for revert:
reverting to unblock another revert
Original issue's description:
> removing GrDrawEffect
>
> BUG=skia:
>
> Committed: https://skia.googlesource.com/skia/+/8ddbe8b9366c8c59c4fb55f01f253de8a0b37d6e
R=bsalomon@google.com
TBR=bsalomon@google.com
NOTREECHECKS=true
NOTRY=true
BUG=skia:
Author: joshualitt@chromium.org
Review URL: https://codereview.chromium.org/577593003
Diffstat (limited to 'tests')
-rw-r--r-- | tests/GLProgramsTest.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/GLProgramsTest.cpp b/tests/GLProgramsTest.cpp index e8b6da5193..931789c8ef 100644 --- a/tests/GLProgramsTest.cpp +++ b/tests/GLProgramsTest.cpp @@ -14,6 +14,7 @@ #include "GrBackendEffectFactory.h" #include "GrContextFactory.h" +#include "GrDrawEffect.h" #include "effects/GrConfigConversionEffect.h" #include "gl/GrGLPathRendering.h" #include "gl/GrGpuGL.h" @@ -55,6 +56,7 @@ bool GrGLProgramDesc::setRandom(SkRandom* random, fKey.reset(); return false; } + GrDrawEffect drawEffect(*stage, useLocalCoords); GrEffectKeyBuilder b(&fKey); uint16_t effectKeySize; if (!GetEffectKeyAndUpdateStats(*stage, gpu->glCaps(), useLocalCoords, &b, @@ -77,6 +79,7 @@ bool GrGLProgramDesc::setRandom(SkRandom* random, fKey.reset(); return false; } + GrDrawEffect drawEffect(*stage, useLocalCoords); GrEffectKeyBuilder b(&fKey); uint16_t effectKeySize; if (!GetEffectKeyAndUpdateStats(*stage, gpu->glCaps(), useLocalCoords, &b, |