4444#include " impeller/entity/glyph_atlas_sdf.vert.h"
4545#include " impeller/entity/gradient_fill.vert.h"
4646#include " impeller/entity/linear_gradient_fill.frag.h"
47+ #include " impeller/entity/linear_gradient_fixed_fill.frag.h"
4748#include " impeller/entity/linear_to_srgb_filter.frag.h"
4849#include " impeller/entity/linear_to_srgb_filter.vert.h"
4950#include " impeller/entity/morphology_filter.frag.h"
6364#include " impeller/entity/vertices.frag.h"
6465#include " impeller/entity/yuv_to_rgb_filter.frag.h"
6566#include " impeller/entity/yuv_to_rgb_filter.vert.h"
66- #include " impeller/entity/linear_gradient_fixed_fill.frag.h"
6767#include " impeller/renderer/formats.h"
6868#include " impeller/renderer/pipeline.h"
6969
@@ -78,7 +78,8 @@ namespace impeller {
7878using LinearGradientFillPipeline =
7979 RenderPipelineT<GradientFillVertexShader, LinearGradientFillFragmentShader>;
8080using LinearGradientFixedFillPipeline =
81- RenderPipelineT<GradientFillVertexShader, LinearGradientFixedFillFragmentShader>;
81+ RenderPipelineT<GradientFillVertexShader,
82+ LinearGradientFixedFillFragmentShader>;
8283using SolidFillPipeline =
8384 RenderPipelineT<SolidFillVertexShader, SolidFillFragmentShader>;
8485using RadialGradientFillPipeline =
@@ -213,8 +214,8 @@ class ContentContext {
213214 return GetPipeline (linear_gradient_fill_pipelines_, opts);
214215 }
215216
216- std::shared_ptr<Pipeline<PipelineDescriptor>> GetLinearGradientFixedFillPipeline (
217- ContentContextOptions opts) const {
217+ std::shared_ptr<Pipeline<PipelineDescriptor>>
218+ GetLinearGradientFixedFillPipeline ( ContentContextOptions opts) const {
218219 return GetPipeline (linear_gradient_fixed_fill_pipelines_, opts);
219220 }
220221
@@ -422,7 +423,8 @@ class ContentContext {
422423 // map.
423424 mutable Variants<SolidFillPipeline> solid_fill_pipelines_;
424425 mutable Variants<LinearGradientFillPipeline> linear_gradient_fill_pipelines_;
425- mutable Variants<LinearGradientFixedFillPipeline> linear_gradient_fixed_fill_pipelines_;
426+ mutable Variants<LinearGradientFixedFillPipeline>
427+ linear_gradient_fixed_fill_pipelines_;
426428 mutable Variants<RadialGradientFillPipeline> radial_gradient_fill_pipelines_;
427429 mutable Variants<SweepGradientFillPipeline> sweep_gradient_fill_pipelines_;
428430 mutable Variants<RRectBlurPipeline> rrect_blur_pipelines_;
0 commit comments