diff options
author | Fernando Sahmkow <fsahmkow27@gmail.com> | 2019-06-20 21:22:20 -0400 |
---|---|---|
committer | FernandoS27 <fsahmkow27@gmail.com> | 2019-06-20 21:24:47 -0400 |
commit | d1812316e1b0f03af2ba10d4fe04be728e72725c (patch) | |
tree | 10fb4e292fdfc9346246895dc80343edc3ed766f /src/video_core/shader | |
parent | 51ba60b27e54beec476416cd0c7334110bcdb274 (diff) |
texture_cache: Style and Corrections
Diffstat (limited to 'src/video_core/shader')
-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 { }; /// Parameters that modify an operation but are not part of any particular operand -using Meta = std::variant<MetaArithmetic, MetaTexture, MetaImage, MetaStackClass, Tegra::Shader::HalfType>; +using Meta = + std::variant<MetaArithmetic, MetaTexture, MetaImage, MetaStackClass, Tegra::Shader::HalfType>; /// Holds any kind of operation that can be done in the IR class OperationNode final { |