Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(219)

Unified Diff: src/gpu/GrAddPathRenderers_default.cpp

Issue 1160863006: delete experimental path renderers (Closed) Base URL: https://skia.googlesource.com/skia.git@map-buffer-option
Patch Set: Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « include/gpu/GrConfig.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/gpu/GrAddPathRenderers_default.cpp
diff --git a/src/gpu/GrAddPathRenderers_default.cpp b/src/gpu/GrAddPathRenderers_default.cpp
index f06856a6502100a14c5dbb8ccb50658efd70a126..bc39b494ba1c50d780a97d8ba2dbd852ec62821e 100644
--- a/src/gpu/GrAddPathRenderers_default.cpp
+++ b/src/gpu/GrAddPathRenderers_default.cpp
@@ -15,12 +15,6 @@
#include "GrDashLinePathRenderer.h"
#include "GrGpu.h"
#include "GrTessellatingPathRenderer.h"
-#if GR_STROKE_PATH_RENDERING
-#include "../../experimental/StrokePathRenderer/GrStrokePathRenderer.h"
-#endif
-#if GR_ANDROID_PATH_RENDERING
-#include "../../experimental/AndroidPathRenderer/GrAndroidPathRenderer.h"
-#endif
#ifndef GR_TESSELLATING_PATH_RENDERING
#define GR_TESSELLATING_PATH_RENDERING 1
@@ -29,12 +23,6 @@
void GrPathRenderer::AddPathRenderers(GrContext* ctx, GrPathRendererChain* chain) {
chain->addPathRenderer(SkNEW_ARGS(GrDashLinePathRenderer, (ctx)))->unref();
-#if GR_STROKE_PATH_RENDERING
- chain->addPathRenderer(SkNEW(GrStrokePathRenderer))->unref();
-#endif
-#if GR_ANDROID_PATH_RENDERING
- chain->addPathRenderer(SkNEW(GrAndroidPathRenderer))->unref();
-#endif
if (GrPathRenderer* pr = GrStencilAndCoverPathRenderer::Create(ctx->resourceProvider(),
*ctx->getGpu()->caps())) {
chain->addPathRenderer(pr)->unref();
« no previous file with comments | « include/gpu/GrConfig.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698