summaryrefslogtreecommitdiffstats
path: root/src/video_core/shader/node.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/video_core/shader/node.h')
-rw-r--r--src/video_core/shader/node.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/video_core/shader/node.h b/src/video_core/shader/node.h
index c9840b75e..b54d33763 100644
--- a/src/video_core/shader/node.h
+++ b/src/video_core/shader/node.h
@@ -465,14 +465,6 @@ public:
return operands.size();
}
- NodeBlock& GetOperands() {
- return operands;
- }
-
- const NodeBlock& GetOperands() const {
- return operands;
- }
-
[[nodiscard]] const Node& operator[](std::size_t operand_index) const {
return operands.at(operand_index);
}