Flutter Impeller
pipelines.h
Go to the documentation of this file.
1 // Copyright 2013 The Flutter Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 
5 #ifndef FLUTTER_IMPELLER_ENTITY_CONTENTS_PIPELINES_H_
6 #define FLUTTER_IMPELLER_ENTITY_CONTENTS_PIPELINES_H_
7 
8 #include "impeller/entity/advanced_blend.frag.h"
9 #include "impeller/entity/advanced_blend.vert.h"
10 #include "impeller/entity/border_mask_blur.frag.h"
11 #include "impeller/entity/clip.frag.h"
12 #include "impeller/entity/clip.vert.h"
13 #include "impeller/entity/color_matrix_color_filter.frag.h"
14 #include "impeller/entity/conical_gradient_fill_conical.frag.h"
15 #include "impeller/entity/conical_gradient_fill_radial.frag.h"
16 #include "impeller/entity/conical_gradient_fill_strip.frag.h"
17 #include "impeller/entity/conical_gradient_fill_strip_radial.frag.h"
18 #include "impeller/entity/conical_gradient_ssbo_fill.frag.h"
19 #include "impeller/entity/conical_gradient_uniform_fill_conical.frag.h"
20 #include "impeller/entity/conical_gradient_uniform_fill_radial.frag.h"
21 #include "impeller/entity/conical_gradient_uniform_fill_strip.frag.h"
22 #include "impeller/entity/conical_gradient_uniform_fill_strip_radial.frag.h"
23 #include "impeller/entity/fast_gradient.frag.h"
24 #include "impeller/entity/fast_gradient.vert.h"
25 #include "impeller/entity/filter_position.vert.h"
26 #include "impeller/entity/filter_position_uv.vert.h"
27 #include "impeller/entity/framebuffer_blend.frag.h"
28 #include "impeller/entity/framebuffer_blend.vert.h"
29 #include "impeller/entity/gaussian.frag.h"
30 #include "impeller/entity/glyph_atlas.frag.h"
31 #include "impeller/entity/glyph_atlas.vert.h"
32 #include "impeller/entity/gradient_fill.vert.h"
33 #include "impeller/entity/line.frag.h"
34 #include "impeller/entity/line.vert.h"
35 #include "impeller/entity/linear_gradient_fill.frag.h"
36 #include "impeller/entity/linear_gradient_ssbo_fill.frag.h"
37 #include "impeller/entity/linear_gradient_uniform_fill.frag.h"
38 #include "impeller/entity/linear_to_srgb_filter.frag.h"
39 #include "impeller/entity/morphology_filter.frag.h"
40 #include "impeller/entity/porter_duff_blend.frag.h"
41 #include "impeller/entity/porter_duff_blend.vert.h"
42 #include "impeller/entity/radial_gradient_fill.frag.h"
43 #include "impeller/entity/radial_gradient_ssbo_fill.frag.h"
44 #include "impeller/entity/radial_gradient_uniform_fill.frag.h"
45 #include "impeller/entity/rrect_blur.frag.h"
46 #include "impeller/entity/rrect_like_blur.vert.h"
47 #include "impeller/entity/rsuperellipse_blur.frag.h"
48 #include "impeller/entity/solid_fill.frag.h"
49 #include "impeller/entity/solid_fill.vert.h"
50 #include "impeller/entity/srgb_to_linear_filter.frag.h"
51 #include "impeller/entity/sweep_gradient_fill.frag.h"
52 #include "impeller/entity/sweep_gradient_ssbo_fill.frag.h"
53 #include "impeller/entity/sweep_gradient_uniform_fill.frag.h"
54 #include "impeller/entity/texture_downsample.frag.h"
55 #include "impeller/entity/texture_fill.frag.h"
56 #include "impeller/entity/texture_fill.vert.h"
57 #include "impeller/entity/texture_fill_strict_src.frag.h"
58 #include "impeller/entity/texture_uv_fill.vert.h"
59 #include "impeller/entity/tiled_texture_fill.frag.h"
60 #include "impeller/entity/vertices_uber_1.frag.h"
61 #include "impeller/entity/vertices_uber_2.frag.h"
62 #include "impeller/entity/yuv_to_rgb_filter.frag.h"
64 
65 #ifdef IMPELLER_ENABLE_OPENGLES
66 #include "impeller/entity/texture_downsample_gles.frag.h"
67 #include "impeller/entity/tiled_texture_fill_external.frag.h"
68 #endif // IMPELLER_ENABLE_OPENGLES
69 
70 // TODO(gaaclarke): These should be split up into different files.
71 namespace impeller {
72 
73 template <typename T>
76 
78  RenderPipelineHandle<AdvancedBlendVertexShader,
79  AdvancedBlendFragmentShader>;
80 
82  RenderPipelineHandle<FramebufferBlendVertexShader,
83  FramebufferBlendFragmentShader>;
84 
85 // clang-format off
155 // clang-format on
156 
157 #ifdef IMPELLER_ENABLE_OPENGLES
158 using TiledTextureExternalPipeline =
159  RenderPipelineHandle<TextureFillVertexShader,
160  TiledTextureFillExternalFragmentShader>;
161 using TiledTextureUvExternalPipeline =
162  RenderPipelineHandle<TextureUvFillVertexShader,
163  TiledTextureFillExternalFragmentShader>;
164 using TextureDownsampleGlesPipeline =
165  RenderPipelineHandle<TextureFillVertexShader,
166  TextureDownsampleGlesFragmentShader>;
167 #endif // IMPELLER_ENABLE_OPENGLES
168 } // namespace impeller
169 
170 #endif // FLUTTER_IMPELLER_ENTITY_CONTENTS_PIPELINES_H_
RenderPipelineHandle< AdvancedBlendVertexShader, AdvancedBlendFragmentShader > AdvancedBlendPipelineHandle
Definition: pipelines.h:79
RenderPipelineHandle< FramebufferBlendVertexShader, FramebufferBlendFragmentShader > FramebufferBlendPipelineHandle
Definition: pipelines.h:83