HomeSort by relevance Sort by last modified time
    Searched defs:SkRasterPipeline (Results 1 - 2 of 2) sorted by null

  /external/skia/src/core/
SkRasterPipeline.h 24 * SkRasterPipeline provides a cheap way to chain together a pixel processing pipeline.
29 * end up bloating our code size dramatically. SkRasterPipeline stages can be chained together
97 class SkRasterPipeline {
99 explicit SkRasterPipeline(SkArenaAlloc*);
101 SkRasterPipeline(const SkRasterPipeline&) = delete;
102 SkRasterPipeline(SkRasterPipeline&&) = default;
104 SkRasterPipeline& operator=(const SkRasterPipeline&) = delete
    [all...]
SkRasterPipeline.cpp 8 #include "SkRasterPipeline.h"
11 SkRasterPipeline::SkRasterPipeline(SkArenaAlloc* alloc) : fAlloc(alloc) {
14 void SkRasterPipeline::reset() {
20 void SkRasterPipeline::append(StockStage stage, void* ctx) {
24 void SkRasterPipeline::unchecked_append(StockStage stage, void* ctx) {
30 void SkRasterPipeline::extend(const SkRasterPipeline& src) {
51 void SkRasterPipeline::dump() const {
52 SkDebugf("SkRasterPipeline, %d stages (in reverse)\n", fNumStages)
    [all...]

Completed in 512 milliseconds