summaryrefslogtreecommitdiffstats
path: root/src/video_core/engines
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-09-02 16:48:27 +0200
committerGitHub <noreply@github.com>2018-09-02 16:48:27 +0200
commit89be49d2f343aa458aa68d8c440bffa44eecf7a1 (patch)
tree93f7aaa91a9e7b38753be03150d7622c32e7ee3a /src/video_core/engines
parentMerge pull request #1219 from jroweboy/less-artifacts (diff)
parentAdded assert for TEXS nodep (diff)
downloadyuzu-89be49d2f343aa458aa68d8c440bffa44eecf7a1.tar
yuzu-89be49d2f343aa458aa68d8c440bffa44eecf7a1.tar.gz
yuzu-89be49d2f343aa458aa68d8c440bffa44eecf7a1.tar.bz2
yuzu-89be49d2f343aa458aa68d8c440bffa44eecf7a1.tar.lz
yuzu-89be49d2f343aa458aa68d8c440bffa44eecf7a1.tar.xz
yuzu-89be49d2f343aa458aa68d8c440bffa44eecf7a1.tar.zst
yuzu-89be49d2f343aa458aa68d8c440bffa44eecf7a1.zip
Diffstat (limited to 'src/video_core/engines')
-rw-r--r--src/video_core/engines/shader_bytecode.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/video_core/engines/shader_bytecode.h b/src/video_core/engines/shader_bytecode.h
index 9d604afd5..a7daea766 100644
--- a/src/video_core/engines/shader_bytecode.h
+++ b/src/video_core/engines/shader_bytecode.h
@@ -519,6 +519,7 @@ union Instruction {
union {
BitField<0, 8, Register> gpr0;
BitField<28, 8, Register> gpr28;
+ BitField<49, 1, u64> nodep;
BitField<50, 3, u64> component_mask_selector;
BitField<53, 4, u64> texture_info;