summaryrefslogtreecommitdiffstats
path: root/src/video_core/shader/node.h
diff options
context:
space:
mode:
authorReinUsesLisp <reinuseslisp@airmail.cc>2020-02-02 02:49:25 +0100
committerReinUsesLisp <reinuseslisp@airmail.cc>2020-02-02 02:52:10 +0100
commit223a89a19f7cd904c79c4070498c5941bcdf0724 (patch)
tree8f2a211c419e7446cc162a83b348132fcf478624 /src/video_core/shader/node.h
parentMerge pull request #3282 from FernandoS27/indexed-samplers (diff)
downloadyuzu-223a89a19f7cd904c79c4070498c5941bcdf0724.tar
yuzu-223a89a19f7cd904c79c4070498c5941bcdf0724.tar.gz
yuzu-223a89a19f7cd904c79c4070498c5941bcdf0724.tar.bz2
yuzu-223a89a19f7cd904c79c4070498c5941bcdf0724.tar.lz
yuzu-223a89a19f7cd904c79c4070498c5941bcdf0724.tar.xz
yuzu-223a89a19f7cd904c79c4070498c5941bcdf0724.tar.zst
yuzu-223a89a19f7cd904c79c4070498c5941bcdf0724.zip
Diffstat (limited to 'src/video_core/shader/node.h')
-rw-r--r--src/video_core/shader/node.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/video_core/shader/node.h b/src/video_core/shader/node.h
index 5f83403db..a0a7b9111 100644
--- a/src/video_core/shader/node.h
+++ b/src/video_core/shader/node.h
@@ -443,9 +443,9 @@ struct MetaTexture {
std::vector<Node> derivates;
Node bias;
Node lod;
- Node component{};
+ Node component;
u32 element{};
- Node index{};
+ Node index;
};
struct MetaImage {