| commit | 49586bec7383d4ccb81f85f8e2dc4162e2d4f6a8 | [log] [tgz] |
|---|---|---|
| author | joshualitt <joshualitt@chromium.org> | Tue Sep 16 08:21:41 2014 -0700 |
| committer | Commit bot <commit-bot@chromium.org> | Tue Sep 16 08:21:42 2014 -0700 |
| tree | 715c9fa39ab2e4b790c401f2c0399be200bbbfc8 | |
| parent | 8a4c1030ff4b8336b5ac5b0712691e2f65383440 [diff] [blame] |
removing GrDrawEffect BUG=skia: Committed: https://skia.googlesource.com/skia/+/8ddbe8b9366c8c59c4fb55f01f253de8a0b37d6e R=bsalomon@google.com Author: joshualitt@chromium.org Review URL: https://codereview.chromium.org/571163002
diff --git a/src/gpu/effects/GrSimpleTextureEffect.h b/src/gpu/effects/GrSimpleTextureEffect.h index 49e3d7a..e81dd86 100644 --- a/src/gpu/effects/GrSimpleTextureEffect.h +++ b/src/gpu/effects/GrSimpleTextureEffect.h
@@ -71,7 +71,7 @@ } virtual bool onIsEqual(const GrEffect& other) const SK_OVERRIDE { - const GrSimpleTextureEffect& ste = CastEffect<GrSimpleTextureEffect>(other); + const GrSimpleTextureEffect& ste = other.cast<GrSimpleTextureEffect>(); return this->hasSameTextureParamsMatrixAndSourceCoords(ste); }