Move more Ops to skgpu::v1 namespace
GrFillRRectOp
GrFillRectOp
Bug: skia:11837
Change-Id: Icdecc2ccd9def659b0d9402910b2072e02577a66
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/444817
Reviewed-by: Michael Ludwig <michaelludwig@google.com>
Commit-Queue: Robert Phillips <robertphillips@google.com>
diff --git a/src/gpu/ops/FillRRectOp.h b/src/gpu/ops/FillRRectOp.h
new file mode 100644
index 0000000..478cb6c
--- /dev/null
+++ b/src/gpu/ops/FillRRectOp.h
@@ -0,0 +1,32 @@
+/*
+ * Copyright 2018 Google Inc.
+ *
+ * Use of this source code is governed by a BSD-style license that can be
+ * found in the LICENSE file.
+ */
+
+#ifndef FillRRectOp_DEFINED
+#define FillRRectOp_DEFINED
+
+#include "include/private/GrTypesPriv.h"
+#include "src/gpu/ops/GrOp.h"
+
+class GrCaps;
+class GrPaint;
+class GrRecordingContext;
+class SkMatrix;
+struct SkRect;
+
+namespace skgpu::v1::FillRRectOp {
+
+ GrOp::Owner Make(GrRecordingContext*,
+ SkArenaAlloc*,
+ GrPaint&&,
+ const SkMatrix& viewMatrix,
+ const SkRRect&,
+ const SkRect& localRect,
+ GrAA);
+
+} // namespace skgpu::v1::FillRRectOp
+
+#endif // FillRRectOp_DEFINED