From 34c3ec2f8c69159fd61b42091ee3157c6e77fa30 Mon Sep 17 00:00:00 2001 From: ReinUsesLisp Date: Mon, 25 Jan 2021 02:48:03 -0300 Subject: 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. --- src/video_core/shader/node.h | 8 -------- 1 file changed, 8 deletions(-) (limited to 'src/video_core/shader/node.h') 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); } -- cgit v1.2.3