|
52 | 52 | #include "impeller/renderer/pipeline.h" |
53 | 53 | #include "impeller/scene/scene_context.h" |
54 | 54 |
|
55 | | -#include "impeller/entity/position.vert.h" |
56 | 55 | #include "impeller/entity/position_color.vert.h" |
57 | 56 |
|
58 | 57 | #include "impeller/scene/scene_context.h" |
@@ -152,8 +151,6 @@ using GlyphAtlasSdfPipeline = |
152 | 151 | using ClipPipeline = |
153 | 152 | RenderPipelineT<SolidFillVertexShader, SolidFillFragmentShader>; |
154 | 153 |
|
155 | | -using GeometryPositionPipeline = |
156 | | - RenderPipelineT<PositionVertexShader, VerticesFragmentShader>; |
157 | 154 | using GeometryColorPipeline = |
158 | 155 | RenderPipelineT<PositionColorVertexShader, VerticesFragmentShader>; |
159 | 156 | using YUVToRGBFilterPipeline = |
@@ -427,11 +424,6 @@ class ContentContext { |
427 | 424 | return GetPipeline(geometry_color_pipelines_, opts); |
428 | 425 | } |
429 | 426 |
|
430 | | - std::shared_ptr<Pipeline<PipelineDescriptor>> GetGeometryPositionPipeline( |
431 | | - ContentContextOptions opts) const { |
432 | | - return GetPipeline(geometry_position_pipelines_, opts); |
433 | | - } |
434 | | - |
435 | 427 | std::shared_ptr<Pipeline<PipelineDescriptor>> GetYUVToRGBFilterPipeline( |
436 | 428 | ContentContextOptions opts) const { |
437 | 429 | return GetPipeline(yuv_to_rgb_filter_pipelines_, opts); |
@@ -661,7 +653,6 @@ class ContentContext { |
661 | 653 | mutable Variants<ClipPipeline> clip_pipelines_; |
662 | 654 | mutable Variants<GlyphAtlasPipeline> glyph_atlas_pipelines_; |
663 | 655 | mutable Variants<GlyphAtlasSdfPipeline> glyph_atlas_sdf_pipelines_; |
664 | | - mutable Variants<GeometryPositionPipeline> geometry_position_pipelines_; |
665 | 656 | mutable Variants<GeometryColorPipeline> geometry_color_pipelines_; |
666 | 657 | mutable Variants<YUVToRGBFilterPipeline> yuv_to_rgb_filter_pipelines_; |
667 | 658 | // Advanced blends. |
|
0 commit comments