Move some more Ops to skgpu::v1 namespace
Bug: skia:11837
Change-Id: I522636c6dbf977929b0d368e18beb9c3a01fdeb1
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/446184
Reviewed-by: Michael Ludwig <michaelludwig@google.com>
Commit-Queue: Robert Phillips <robertphillips@google.com>
diff --git a/src/gpu/ops/AtlasPathRenderer.cpp b/src/gpu/ops/AtlasPathRenderer.cpp
index 3283896..40b52f0 100644
--- a/src/gpu/ops/AtlasPathRenderer.cpp
+++ b/src/gpu/ops/AtlasPathRenderer.cpp
@@ -15,7 +15,7 @@
#include "src/gpu/effects/GrModulateAtlasCoverageEffect.h"
#include "src/gpu/geometry/GrStyledShape.h"
#include "src/gpu/ops/AtlasRenderTask.h"
-#include "src/gpu/ops/GrDrawAtlasPathOp.h"
+#include "src/gpu/ops/DrawAtlasPathOp.h"
#include "src/gpu/ops/TessellationPathRenderer.h"
#include "src/gpu/tessellate/shaders/GrTessellationShader.h"
#include "src/gpu/v1/SurfaceDrawContext_v1.h"
@@ -309,13 +309,13 @@
: args.fSurfaceDrawContext->asSurfaceProxy()->backingStoreBoundsIRect())
: devIBounds;
const GrCaps& caps = *args.fSurfaceDrawContext->caps();
- auto op = GrOp::Make<GrDrawAtlasPathOp>(args.fContext,
- args.fSurfaceDrawContext->arenaAlloc(),
- fillBounds, *args.fViewMatrix,
- std::move(args.fPaint), locationInAtlas,
- devIBounds, transposedInAtlas,
- fAtlasRenderTasks.back()->readView(caps),
- args.fShape->inverseFilled());
+ auto op = GrOp::Make<DrawAtlasPathOp>(args.fContext,
+ args.fSurfaceDrawContext->arenaAlloc(),
+ fillBounds, *args.fViewMatrix,
+ std::move(args.fPaint), locationInAtlas,
+ devIBounds, transposedInAtlas,
+ fAtlasRenderTasks.back()->readView(caps),
+ args.fShape->inverseFilled());
args.fSurfaceDrawContext->addDrawOp(args.fClip, std::move(op));
return true;
}