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.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/SkRasterPipeline.h b/src/core/SkRasterPipeline.h
index 605eebee49..a37ea44e0c 100644
--- a/src/core/SkRasterPipeline.h
+++ b/src/core/SkRasterPipeline.h
@@ -17,8 +17,6 @@
#include <functional>
#include <vector>
-struct SkJumper_Engine;
-
/**
* SkRasterPipeline provides a cheap way to chain together a pixel processing pipeline.
*
@@ -163,7 +161,9 @@ private:
void* ctx;
};
- const SkJumper_Engine& build_pipeline(void**) const;
+ using StartPipelineFn = void(*)(size_t,size_t,size_t,size_t, void** program);
+ StartPipelineFn build_pipeline(void**) const;
+
void unchecked_append(StockStage, void*);
SkArenaAlloc* fAlloc;