diff options
Diffstat (limited to 'src/video_core/shader/node.h')
| -rw-r--r-- | src/video_core/shader/node.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/video_core/shader/node.h b/src/video_core/shader/node.h index 2bf535928..0ac83fcf0 100644 --- a/src/video_core/shader/node.h +++ b/src/video_core/shader/node.h | |||
| @@ -339,7 +339,8 @@ struct MetaImage { | |||
| 339 | }; | 339 | }; |
| 340 | 340 | ||
| 341 | /// Parameters that modify an operation but are not part of any particular operand | 341 | /// Parameters that modify an operation but are not part of any particular operand |
| 342 | using Meta = std::variant<MetaArithmetic, MetaTexture, MetaImage, MetaStackClass, Tegra::Shader::HalfType>; | 342 | using Meta = |
| 343 | std::variant<MetaArithmetic, MetaTexture, MetaImage, MetaStackClass, Tegra::Shader::HalfType>; | ||
| 343 | 344 | ||
| 344 | /// Holds any kind of operation that can be done in the IR | 345 | /// Holds any kind of operation that can be done in the IR |
| 345 | class OperationNode final { | 346 | class OperationNode final { |