aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/gpu/GrFPArgs.h
diff options
context:
space:
mode:
authorGravatar Mike Reed <reed@google.com>2018-01-20 14:48:56 +0000
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2018-01-20 14:49:10 +0000
commit3d628fe00a7d6cf4a375d758e7436f104d11417d (patch)
tree2c0b1f495d3584104bff4a81bca2941f0047171a /src/gpu/GrFPArgs.h
parentfaca00d9936fe74ddb0747625207ce534e8cf3fe (diff)
Revert "simplify GrFPArgs, isolating localmatrix"
This reverts commit b76c71702517643b5f6081991b376bbf73b34bde. Reason for revert: try to unblock android roller Original change's description: > simplify GrFPArgs, isolating localmatrix > > Bug: skia: > Change-Id: Icee24e0a355a7d1bae29b7721b4d95db8023ca77 > Reviewed-on: https://skia-review.googlesource.com/97063 > Reviewed-by: Brian Salomon <bsalomon@google.com> > Commit-Queue: Mike Reed <reed@google.com> TBR=bsalomon@google.com,reed@google.com Change-Id: Ic7a2288844cde57922b2cc74b855eb517ade48be No-Presubmit: true No-Tree-Checks: true No-Try: true Bug: skia: Reviewed-on: https://skia-review.googlesource.com/97580 Reviewed-by: Mike Reed <reed@google.com> Commit-Queue: Mike Reed <reed@google.com>
Diffstat (limited to 'src/gpu/GrFPArgs.h')
-rw-r--r--src/gpu/GrFPArgs.h11
1 files changed, 1 insertions, 10 deletions
diff --git a/src/gpu/GrFPArgs.h b/src/gpu/GrFPArgs.h
index cdb2e5de50..58f12c5cac 100644
--- a/src/gpu/GrFPArgs.h
+++ b/src/gpu/GrFPArgs.h
@@ -15,6 +15,7 @@ class GrContext;
class GrColorSpaceInfo;
struct GrFPArgs {
+ GrFPArgs() {}
GrFPArgs(GrContext* context,
const SkMatrix* viewMatrix,
const SkMatrix* localMatrix,
@@ -26,16 +27,6 @@ struct GrFPArgs {
, fFilterQuality(filterQuality)
, fDstColorSpaceInfo(dstColorSpaceInfo) {}
- GrFPArgs(GrContext* context,
- const SkMatrix* viewMatrix,
- SkFilterQuality filterQuality,
- const GrColorSpaceInfo* dstColorSpaceInfo)
- : fContext(context)
- , fViewMatrix(viewMatrix)
- , fLocalMatrix(nullptr)
- , fFilterQuality(filterQuality)
- , fDstColorSpaceInfo(dstColorSpaceInfo) {}
-
GrContext* fContext;
const SkMatrix* fViewMatrix;
const SkMatrix* fLocalMatrix;