Rename GrGpuTessellationPathRenderer to GrTessellationPathRenderer
Change-Id: I3598ecab2e56b37a8d08b9da186c27f3cf709bfe
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/279245
Reviewed-by: Robert Phillips <robertphillips@google.com>
Commit-Queue: Chris Dalton <csmartdalton@google.com>
diff --git a/src/gpu/GrPathRendererChain.cpp b/src/gpu/GrPathRendererChain.cpp
index 11c3d46..4bcb3bf 100644
--- a/src/gpu/GrPathRendererChain.cpp
+++ b/src/gpu/GrPathRendererChain.cpp
@@ -24,18 +24,18 @@
#include "src/gpu/ops/GrSmallPathRenderer.h"
#include "src/gpu/ops/GrStencilAndCoverPathRenderer.h"
#include "src/gpu/ops/GrTriangulatingPathRenderer.h"
-#include "src/gpu/tessellate/GrGpuTessellationPathRenderer.h"
+#include "src/gpu/tessellate/GrTessellationPathRenderer.h"
GrPathRendererChain::GrPathRendererChain(GrRecordingContext* context, const Options& options) {
const GrCaps& caps = *context->priv().caps();
if (options.fGpuPathRenderers & GpuPathRenderers::kDashLine) {
fChain.push_back(sk_make_sp<GrDashLinePathRenderer>());
}
- if (options.fGpuPathRenderers & GpuPathRenderers::kGpuTessellation) {
+ if (options.fGpuPathRenderers & GpuPathRenderers::kTessellation) {
if (caps.shaderCaps()->tessellationSupport()) {
- auto gtess = sk_make_sp<GrGpuTessellationPathRenderer>(caps);
- context->priv().addOnFlushCallbackObject(gtess.get());
- fChain.push_back(std::move(gtess));
+ auto tess = sk_make_sp<GrTessellationPathRenderer>(caps);
+ context->priv().addOnFlushCallbackObject(tess.get());
+ fChain.push_back(std::move(tess));
}
}
if (options.fGpuPathRenderers & GpuPathRenderers::kAAConvex) {