Index: src/core/SkRasterPipeline.h |
diff --git a/src/core/SkRasterPipeline.h b/src/core/SkRasterPipeline.h |
index acbabcbadc0d7b17af5ab616e59591c62d2a61df..186ee654c206451f2c9831297f2d58afd8029d91 100644 |
--- a/src/core/SkRasterPipeline.h |
+++ b/src/core/SkRasterPipeline.h |
@@ -72,10 +72,9 @@ |
SkRasterPipeline(); |
- // Run the pipeline constructed with append(), walking x through [x,x+n), |
+ // Run the pipeline constructed with append(), walking x through [0,n), |
// generally in 4 pixel steps, but sometimes 1 pixel at a time. |
- void run(size_t x, size_t n); |
- void run(size_t n) { this->run(0, n); } |
+ void run(size_t n); |
// Use this append() if your stage is sensitive to the number of pixels you're working with: |
// - body will always be called for a full 4 pixels |
@@ -94,9 +93,6 @@ |
this->append(body, ctx, tail, ctx); |
} |
- // Append all stages to this pipeline. |
- void extend(const SkRasterPipeline&); |
- |
private: |
using Stages = SkSTArray<10, Stage, /*MEM_COPY=*/true>; |