diff options
| author | 2020-09-24 21:52:23 -0600 | |
|---|---|---|
| committer | 2020-09-24 21:52:23 -0600 | |
| commit | a19dc3bf00bb031120805b1e40fe0a3a455648b7 (patch) | |
| tree | 01d5cf26bdc0cbe96544b6b59a290fba8efbb33e /src/video_core/shader/node.h | |
| parent | Start of Integer flags implementation (diff) | |
| download | yuzu-a19dc3bf00bb031120805b1e40fe0a3a455648b7.tar.gz yuzu-a19dc3bf00bb031120805b1e40fe0a3a455648b7.tar.xz yuzu-a19dc3bf00bb031120805b1e40fe0a3a455648b7.zip | |
Address Comments
Diffstat (limited to 'src/video_core/shader/node.h')
| -rw-r--r-- | src/video_core/shader/node.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/video_core/shader/node.h b/src/video_core/shader/node.h index 11a8a3f70..1b19a0673 100644 --- a/src/video_core/shader/node.h +++ b/src/video_core/shader/node.h | |||
| @@ -464,7 +464,11 @@ public: | |||
| 464 | return operands.size(); | 464 | return operands.size(); |
| 465 | } | 465 | } |
| 466 | 466 | ||
| 467 | NodeBlock GetOperands() const { | 467 | NodeBlock& GetOperands() { |
| 468 | return operands; | ||
| 469 | } | ||
| 470 | |||
| 471 | const NodeBlock& GetOperands() const { | ||
| 468 | return operands; | 472 | return operands; |
| 469 | } | 473 | } |
| 470 | 474 | ||