summaryrefslogtreecommitdiff
path: root/src/video_core/shader/node.h
diff options
context:
space:
mode:
authorGravatar Fernando Sahmkow2019-06-20 21:22:20 -0400
committerGravatar FernandoS272019-06-20 21:24:47 -0400
commitd1812316e1b0f03af2ba10d4fe04be728e72725c (patch)
tree10fb4e292fdfc9346246895dc80343edc3ed766f /src/video_core/shader/node.h
parentshader_cache: Correct versioning and size calculation. (diff)
downloadyuzu-d1812316e1b0f03af2ba10d4fe04be728e72725c.tar.gz
yuzu-d1812316e1b0f03af2ba10d4fe04be728e72725c.tar.xz
yuzu-d1812316e1b0f03af2ba10d4fe04be728e72725c.zip
texture_cache: Style and Corrections
Diffstat (limited to 'src/video_core/shader/node.h')
-rw-r--r--src/video_core/shader/node.h3
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
342using Meta = std::variant<MetaArithmetic, MetaTexture, MetaImage, MetaStackClass, Tegra::Shader::HalfType>; 342using 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
345class OperationNode final { 346class OperationNode final {