aboutsummaryrefslogtreecommitdiff
path: root/src/video_core/shader/node.h
diff options
context:
space:
mode:
authorLevi Behunin <l3ehunin@gmail.com>2020-09-24 16:40:06 -0600
committerLevi Behunin <l3ehunin@gmail.com>2020-09-24 16:40:06 -0600
commitd53b79ff5ca37d5110034e73e50b2fe35c3868ee (patch)
treebe721bef251f8cb6b2d7a8e4333a35ff8fe8ff18 /src/video_core/shader/node.h
parentfa4294cc6f293548bbe167a67dec388d27fd5e25 (diff)
Start of Integer flags implementation
Diffstat (limited to 'src/video_core/shader/node.h')
-rw-r--r--src/video_core/shader/node.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/video_core/shader/node.h b/src/video_core/shader/node.h
index 8f230d57a6..11a8a3f70e 100644
--- a/src/video_core/shader/node.h
+++ b/src/video_core/shader/node.h
@@ -464,6 +464,10 @@ public:
return operands.size();
}
+ NodeBlock GetOperands() const {
+ return operands;
+ }
+
const Node& operator[](std::size_t operand_index) const {
return operands.at(operand_index);
}