aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/SkRasterPipeline.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/SkRasterPipeline.h')
-rw-r--r--src/core/SkRasterPipeline.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/core/SkRasterPipeline.h b/src/core/SkRasterPipeline.h
index 44aa37946f..5143d523e4 100644
--- a/src/core/SkRasterPipeline.h
+++ b/src/core/SkRasterPipeline.h
@@ -64,7 +64,7 @@
M(set_rgb) M(swap_rb) \
M(from_srgb) M(to_srgb) \
M(from_2dot2) M(to_2dot2) \
- M(constant_color) M(store_f32) \
+ M(constant_color) M(seed_shader) M(store_f32) \
M(load_a8) M(store_a8) \
M(load_565) M(store_565) \
M(load_f16) M(store_f16) \
@@ -112,11 +112,11 @@ public:
// Append all stages to this pipeline.
void extend(const SkRasterPipeline&);
- // Runs the pipeline walking x through [x,x+n), holding y constant.
- void run(size_t x, size_t y, size_t n) const;
+ // Runs the pipeline walking x through [x,x+n).
+ void run(size_t x, size_t n) const;
// If you're going to run() the pipeline more than once, it's best to compile it.
- std::function<void(size_t x, size_t y, size_t n)> compile() const;
+ std::function<void(size_t x, size_t n)> compile() const;
void dump() const;
@@ -130,7 +130,7 @@ public:
void append_from_srgb(SkAlphaType);
private:
- std::function<void(size_t, size_t, size_t)> jit() const;
+ std::function<void(size_t, size_t)> jit() const;
std::vector<Stage> fStages;
};