Flutter Impeller
shader_types.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_CORE_SHADER_TYPES_H_
6 #define FLUTTER_IMPELLER_CORE_SHADER_TYPES_H_
7 
8 #include <cstddef>
9 #include <cstdint>
10 #include <optional>
11 #include <string_view>
12 #include <vector>
13 
14 #include "flutter/fml/hash_combine.h"
15 #include "flutter/fml/logging.h"
17 #include "impeller/geometry/half.h"
19 
20 namespace impeller {
21 
22 enum class ShaderStage {
23  kUnknown,
24  kVertex,
25  kFragment,
26  kCompute,
27 };
28 
30  switch (stage) {
32  return ShaderStage::kVertex;
36  return ShaderStage::kCompute;
37  }
38  FML_UNREACHABLE();
39 }
40 
41 enum class ShaderType {
42  kUnknown,
43  kVoid,
44  kBoolean,
49  kSignedInt,
54  kHalfFloat,
55  kFloat,
56  kDouble,
57  kStruct,
58  kImage,
60  kSampler,
61 };
62 
65  std::string name;
66  size_t offset;
67  size_t size;
68  size_t byte_length;
69  std::optional<size_t> array_elements;
70 };
71 
73  // This must match the uniform name in the shader program.
74  std::string name;
75  std::vector<ShaderStructMemberMetadata> members;
76 };
77 
78 /// @brief Metadata required to bind a buffer.
79 ///
80 /// OpenGL binding requires the usage of the separate shader metadata struct.
82  /// @brief The name of the uniform slot.
83  const char* name;
84 
85  /// @brief `ext_res_0` is the Metal binding value.
86  size_t ext_res_0;
87 
88  /// @brief The Vulkan descriptor set index.
89  size_t set;
90 
91  /// @brief The Vulkan binding value.
92  size_t binding;
93 };
94 
95 /// @brief Metadata required to bind a combined texture and sampler.
96 ///
97 /// OpenGL binding requires the usage of the separate shader metadata struct.
99  /// @brief The name of the uniform slot.
100  const char* name;
101 
102  /// @brief `ext_res_0` is the Metal binding value.
104 
105  /// @brief The Vulkan descriptor set index.
106  size_t set;
107 
108  /// @brief The Vulkan binding value.
109  size_t binding;
110 };
111 
113  const char* name;
114  size_t location;
115  size_t set;
116  size_t binding;
118  size_t bit_width;
119  size_t vec_size;
120  size_t columns;
121  size_t offset;
123 
124  constexpr size_t GetHash() const {
125  return fml::HashCombine(name, location, set, binding, type, bit_width,
127  }
128 
129  constexpr bool operator==(const ShaderStageIOSlot& other) const {
130  return name == other.name && //
131  location == other.location && //
132  set == other.set && //
133  binding == other.binding && //
134  type == other.type && //
135  bit_width == other.bit_width && //
136  vec_size == other.vec_size && //
137  columns == other.columns && //
138  offset == other.offset && //
140  ;
141  }
142 };
143 
145  size_t stride;
146  size_t binding;
147 
148  constexpr size_t GetHash() const { return fml::HashCombine(stride, binding); }
149 
150  constexpr bool operator==(const ShaderStageBufferLayout& other) const {
151  return stride == other.stride && //
152  binding == other.binding;
153  }
154 };
155 
156 enum class DescriptorType {
160  kImage,
161  kSampler,
163 };
164 
166  uint32_t binding;
169 };
170 
171 template <size_t Size>
172 struct Padding {
173  private:
174  uint8_t pad_[Size];
175 };
176 
177 /// @brief Struct used for padding uniform buffer array elements.
178 template <typename T,
179  size_t Size,
180  class = std::enable_if_t<std::is_standard_layout_v<T>>>
181 struct Padded {
182  T value;
184 
185  Padded(T p_value) : value(p_value){}; // NOLINT(google-explicit-constructor)
186 };
187 
188 inline constexpr Vector4 ToVector(Color color) {
189  return {color.red, color.green, color.blue, color.alpha};
190 }
191 
192 } // namespace impeller
193 
194 #endif // FLUTTER_IMPELLER_CORE_SHADER_TYPES_H_
impeller::ShaderStageIOSlot::relaxed_precision
bool relaxed_precision
Definition: shader_types.h:122
impeller::ShaderStageIOSlot::binding
size_t binding
Definition: shader_types.h:116
impeller::ShaderStructMemberMetadata
Definition: shader_types.h:63
impeller::ShaderStageIOSlot::name
const char * name
Definition: shader_types.h:113
impeller::ShaderStageIOSlot
Definition: shader_types.h:112
impeller::ShaderUniformSlot::ext_res_0
size_t ext_res_0
ext_res_0 is the Metal binding value.
Definition: shader_types.h:86
impeller::SampledImageSlot::name
const char * name
The name of the uniform slot.
Definition: shader_types.h:100
impeller::DescriptorSetLayout
Definition: shader_types.h:165
impeller::Padded
Struct used for padding uniform buffer array elements.
Definition: shader_types.h:181
impeller::ShaderUniformSlot
Metadata required to bind a buffer.
Definition: shader_types.h:81
impeller::ShaderType::kAtomicCounter
@ kAtomicCounter
impeller::ShaderStageIOSlot::columns
size_t columns
Definition: shader_types.h:120
impeller::RuntimeShaderStage
RuntimeShaderStage
Definition: runtime_types.h:28
impeller::ShaderType::kDouble
@ kDouble
impeller::ShaderStageIOSlot::offset
size_t offset
Definition: shader_types.h:121
impeller::Padded::_PADDING_
Padding< Size > _PADDING_
Definition: shader_types.h:183
impeller::ShaderStage::kUnknown
@ kUnknown
impeller::ShaderType
ShaderType
Definition: shader_types.h:41
impeller::Color
Definition: color.h:123
impeller::ShaderMetadata
Definition: shader_types.h:72
impeller::Vector4
Definition: vector.h:232
impeller::ShaderStageBufferLayout::binding
size_t binding
Definition: shader_types.h:146
impeller::Padded::value
T value
Definition: shader_types.h:182
impeller::ShaderType::kSignedInt64
@ kSignedInt64
impeller::ShaderStructMemberMetadata::byte_length
size_t byte_length
Definition: shader_types.h:68
impeller::ShaderType::kImage
@ kImage
impeller::ShaderStage
ShaderStage
Definition: shader_types.h:22
impeller::DescriptorSetLayout::shader_stage
ShaderStage shader_stage
Definition: shader_types.h:168
impeller::Padded::Padded
Padded(T p_value)
Definition: shader_types.h:185
impeller::ShaderType::kVoid
@ kVoid
impeller::ShaderUniformSlot::name
const char * name
The name of the uniform slot.
Definition: shader_types.h:83
impeller::DescriptorType::kImage
@ kImage
impeller::ShaderStageBufferLayout
Definition: shader_types.h:144
impeller::Size
TSize< Scalar > Size
Definition: size.h:137
impeller::ShaderType::kSignedByte
@ kSignedByte
impeller::ShaderMetadata::name
std::string name
Definition: shader_types.h:74
impeller::ShaderType::kUnsignedShort
@ kUnsignedShort
impeller::ToShaderStage
constexpr ShaderStage ToShaderStage(RuntimeShaderStage stage)
Definition: shader_types.h:29
runtime_types.h
impeller::ShaderType::kUnsignedInt64
@ kUnsignedInt64
impeller::RuntimeShaderStage::kVertex
@ kVertex
impeller::ShaderStructMemberMetadata::offset
size_t offset
Definition: shader_types.h:66
impeller::ShaderType::kUnsignedByte
@ kUnsignedByte
impeller::ShaderType::kFloat
@ kFloat
matrix.h
impeller::ShaderUniformSlot::binding
size_t binding
The Vulkan binding value.
Definition: shader_types.h:92
impeller::RuntimeShaderStage::kFragment
@ kFragment
impeller::ShaderStageIOSlot::bit_width
size_t bit_width
Definition: shader_types.h:118
impeller::Padding
Definition: shader_types.h:172
impeller::ShaderType::kBoolean
@ kBoolean
impeller::ShaderStageIOSlot::set
size_t set
Definition: shader_types.h:115
impeller::ShaderType::kSampler
@ kSampler
impeller::ShaderStructMemberMetadata::size
size_t size
Definition: shader_types.h:67
impeller::ShaderStructMemberMetadata::array_elements
std::optional< size_t > array_elements
Definition: shader_types.h:69
impeller::DescriptorType::kSampler
@ kSampler
impeller::SampledImageSlot
Metadata required to bind a combined texture and sampler.
Definition: shader_types.h:98
impeller::ShaderType::kSampledImage
@ kSampledImage
impeller::ShaderStage::kFragment
@ kFragment
impeller::ShaderStageIOSlot::GetHash
constexpr size_t GetHash() const
Definition: shader_types.h:124
impeller::DescriptorType::kSampledImage
@ kSampledImage
impeller::ShaderStructMemberMetadata::name
std::string name
Definition: shader_types.h:65
impeller::DescriptorType::kUniformBuffer
@ kUniformBuffer
impeller::ShaderStageIOSlot::location
size_t location
Definition: shader_types.h:114
impeller::ShaderType::kUnsignedInt
@ kUnsignedInt
impeller::ShaderStageIOSlot::operator==
constexpr bool operator==(const ShaderStageIOSlot &other) const
Definition: shader_types.h:129
impeller::ShaderType::kStruct
@ kStruct
half.h
impeller::ShaderType::kSignedShort
@ kSignedShort
impeller::ShaderType::kHalfFloat
@ kHalfFloat
impeller::ShaderType::kSignedInt
@ kSignedInt
impeller::ShaderStageIOSlot::type
ShaderType type
Definition: shader_types.h:117
impeller::ShaderStage::kVertex
@ kVertex
impeller::ToVector
constexpr Vector4 ToVector(Color color)
Definition: shader_types.h:188
impeller::SampledImageSlot::set
size_t set
The Vulkan descriptor set index.
Definition: shader_types.h:106
impeller::RuntimeShaderStage::kCompute
@ kCompute
impeller::ShaderStageBufferLayout::GetHash
constexpr size_t GetHash() const
Definition: shader_types.h:148
impeller::ShaderUniformSlot::set
size_t set
The Vulkan descriptor set index.
Definition: shader_types.h:89
impeller::SampledImageSlot::texture_index
size_t texture_index
ext_res_0 is the Metal binding value.
Definition: shader_types.h:103
color
DlColor color
Definition: dl_golden_blur_unittests.cc:24
impeller::ShaderStageBufferLayout::stride
size_t stride
Definition: shader_types.h:145
impeller::DescriptorType::kInputAttachment
@ kInputAttachment
impeller::ShaderStage::kCompute
@ kCompute
impeller::ShaderStructMemberMetadata::type
ShaderType type
Definition: shader_types.h:64
impeller::ShaderType::kUnknown
@ kUnknown
impeller::SampledImageSlot::binding
size_t binding
The Vulkan binding value.
Definition: shader_types.h:109
impeller::DescriptorSetLayout::descriptor_type
DescriptorType descriptor_type
Definition: shader_types.h:167
impeller::ShaderMetadata::members
std::vector< ShaderStructMemberMetadata > members
Definition: shader_types.h:75
impeller::ShaderStageBufferLayout::operator==
constexpr bool operator==(const ShaderStageBufferLayout &other) const
Definition: shader_types.h:150
impeller
Definition: allocation.cc:12
impeller::ShaderStageIOSlot::vec_size
size_t vec_size
Definition: shader_types.h:119
impeller::DescriptorSetLayout::binding
uint32_t binding
Definition: shader_types.h:166
impeller::DescriptorType::kStorageBuffer
@ kStorageBuffer
impeller::DescriptorType
DescriptorType
Definition: shader_types.h:156