aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/gpu/ops/GrNonAAStrokeRectOp.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gpu/ops/GrNonAAStrokeRectOp.h')
-rw-r--r--src/gpu/ops/GrNonAAStrokeRectOp.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/src/gpu/ops/GrNonAAStrokeRectOp.h b/src/gpu/ops/GrNonAAStrokeRectOp.h
new file mode 100644
index 0000000000..1e067fa9ea
--- /dev/null
+++ b/src/gpu/ops/GrNonAAStrokeRectOp.h
@@ -0,0 +1,28 @@
+/*
+ * 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 GrNonAAStrokeRectOp_DEFINED
+#define GrNonAAStrokeRectOp_DEFINED
+
+#include "GrColor.h"
+#include "SkRefCnt.h"
+
+class GrDrawOp;
+struct SkRect;
+class SkStrokeRec;
+class SkMatrix;
+
+namespace GrNonAAStrokeRectOp {
+
+sk_sp<GrDrawOp> Make(GrColor color,
+ const SkMatrix& viewMatrix,
+ const SkRect& rect,
+ const SkStrokeRec&,
+ bool snapToPixelCenters);
+}
+
+#endif