Have GrFillRRectOp make use of the GrSimpleMeshDrawOpHelper

I'm not sure why this wasn't converted to using a GrSMDOH earlier.

Change-Id: Ie8b0e2ce3787dfef4459524eec671d769cacdb5a
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/278465
Reviewed-by: Chris Dalton <csmartdalton@google.com>
Commit-Queue: Robert Phillips <robertphillips@google.com>
diff --git a/src/gpu/ops/GrFillRRectOp.h b/src/gpu/ops/GrFillRRectOp.h
index 7a4b860..c718006 100644
--- a/src/gpu/ops/GrFillRRectOp.h
+++ b/src/gpu/ops/GrFillRRectOp.h
@@ -19,11 +19,10 @@
 
 namespace GrFillRRectOp {
     std::unique_ptr<GrDrawOp> Make(GrRecordingContext*,
-                                   GrAAType,
+                                   GrPaint&&,
                                    const SkMatrix& viewMatrix,
                                    const SkRRect&,
-                                   const GrCaps&,
-                                   GrPaint&&);
+                                   GrAAType);
 };
 
 #endif