summaryrefslogtreecommitdiff
path: root/src/video_core/shader/node.h
diff options
context:
space:
mode:
authorGravatar ReinUsesLisp2021-01-25 02:48:03 -0300
committerGravatar ReinUsesLisp2021-01-25 02:48:03 -0300
commit34c3ec2f8c69159fd61b42091ee3157c6e77fa30 (patch)
treeb21727e82403573764151ced5faa89caf894594e /src/video_core/shader/node.h
parentMerge pull request #5819 from ReinUsesLisp/cull-mode-cast (diff)
downloadyuzu-34c3ec2f8c69159fd61b42091ee3157c6e77fa30.tar.gz
yuzu-34c3ec2f8c69159fd61b42091ee3157c6e77fa30.tar.xz
yuzu-34c3ec2f8c69159fd61b42091ee3157c6e77fa30.zip
Revert "Start of Integer flags implementation"
This reverts #4713. The implementation in that PR is not accurate. It does not reflect the behavior seen in hardware.
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:
465 return operands.size(); 465 return operands.size();
466 } 466 }
467 467
468 NodeBlock& GetOperands() {
469 return operands;
470 }
471
472 const NodeBlock& GetOperands() const {
473 return operands;
474 }
475
476 [[nodiscard]] const Node& operator[](std::size_t operand_index) const { 468 [[nodiscard]] const Node& operator[](std::size_t operand_index) const {
477 return operands.at(operand_index); 469 return operands.at(operand_index);
478 } 470 }