From 16776dfb4b307c70d08e316f2ecf2a53953f2e0d Mon Sep 17 00:00:00 2001 From: Mike Klein Date: Thu, 3 Aug 2017 10:22:42 -0400 Subject: funnel all constant colors through append_constant_color() My next step is to change the uniform_color context to struct { float r,g,b,a; uint32_t rgba; }; so that it's trivial to load in both float and 8-bit pipelines. Change-Id: If9bdde353ced3bf9eb0c63204b4770ed614ad16b Reviewed-on: https://skia-review.googlesource.com/30481 Reviewed-by: Florin Malita Commit-Queue: Mike Klein --- bench/SkRasterPipelineBench.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'bench/SkRasterPipelineBench.cpp') diff --git a/bench/SkRasterPipelineBench.cpp b/bench/SkRasterPipelineBench.cpp index 0df8086401..818ab2b447 100644 --- a/bench/SkRasterPipelineBench.cpp +++ b/bench/SkRasterPipelineBench.cpp @@ -123,8 +123,9 @@ public: SkColorSpaceTransferFn from_2dot2 = gamma( 2.2f), to_2dot2 = gamma(1/2.2f); - SkRasterPipeline_<256> p; - p.append(SkRasterPipeline::uniform_color, &c); + SkSTArenaAlloc<256> alloc; + SkRasterPipeline p(&alloc); + p.append_constant_color(&alloc, c); p.append(SkRasterPipeline::parametric_r, &from_2dot2); p.append(SkRasterPipeline::parametric_g, &from_2dot2); p.append(SkRasterPipeline::parametric_b, &from_2dot2); -- cgit v1.2.3