aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/gpu/ops/GrLatticeOp.h
diff options
context:
space:
mode:
authorGravatar Brian Salomon <bsalomon@google.com>2016-12-16 09:52:16 -0500
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2016-12-16 16:58:24 +0000
commit895274391db8df7357334aec260edca2e1735626 (patch)
tree6c447a64c6e376d67503ef18e20cfdb655b6a312 /src/gpu/ops/GrLatticeOp.h
parent6b316e9e20d67f0f13021ca62f4270105c6151b1 (diff)
move src/gpu/batches -> src/gpu/ops
Change-Id: I6410eae41f051ce38bef6f38d670924c3483c325 Reviewed-on: https://skia-review.googlesource.com/6163 Commit-Queue: Brian Salomon <bsalomon@google.com> Reviewed-by: Brian Osman <brianosman@google.com>
Diffstat (limited to 'src/gpu/ops/GrLatticeOp.h')
-rw-r--r--src/gpu/ops/GrLatticeOp.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/src/gpu/ops/GrLatticeOp.h b/src/gpu/ops/GrLatticeOp.h
new file mode 100644
index 0000000000..2908461a29
--- /dev/null
+++ b/src/gpu/ops/GrLatticeOp.h
@@ -0,0 +1,24 @@
+/*
+ * Copyright 2015 Google Inc.
+ *
+ * Use of this source code is governed by a BSD-style license that can be
+ * found in the LICENSE file.
+ */
+
+#ifndef GLatticeOp_DEFINED
+#define GLatticeOp_DEFINED
+
+#include "GrColor.h"
+#include "SkRefCnt.h"
+
+class GrDrawOp;
+class SkLatticeIter;
+class SkMatrix;
+struct SkRect;
+
+namespace GrLatticeOp {
+sk_sp<GrDrawOp> MakeNonAA(GrColor color, const SkMatrix& viewMatrix, int imageWidth,
+ int imageHeight, std::unique_ptr<SkLatticeIter> iter, const SkRect& dst);
+};
+
+#endif