summaryrefslogtreecommitdiffstats
path: root/src/video_core/engines
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-08-09 04:28:18 +0200
committerGitHub <noreply@github.com>2018-08-09 04:28:18 +0200
commit25ba4d1b68b77d35db94a5f16e2f98b42be50370 (patch)
tree873cad03580896a4be78c7a67178b9fb749de915 /src/video_core/engines
parentMerge pull request #986 from mailwl/acc-loadimage (diff)
parentgl_shader_decompiler: Stub input attribute Unknown_63. (diff)
downloadyuzu-25ba4d1b68b77d35db94a5f16e2f98b42be50370.tar
yuzu-25ba4d1b68b77d35db94a5f16e2f98b42be50370.tar.gz
yuzu-25ba4d1b68b77d35db94a5f16e2f98b42be50370.tar.bz2
yuzu-25ba4d1b68b77d35db94a5f16e2f98b42be50370.tar.lz
yuzu-25ba4d1b68b77d35db94a5f16e2f98b42be50370.tar.xz
yuzu-25ba4d1b68b77d35db94a5f16e2f98b42be50370.tar.zst
yuzu-25ba4d1b68b77d35db94a5f16e2f98b42be50370.zip
Diffstat (limited to 'src/video_core/engines')
-rw-r--r--src/video_core/engines/shader_bytecode.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/video_core/engines/shader_bytecode.h b/src/video_core/engines/shader_bytecode.h
index 0d33c5a5e..3d4557b7e 100644
--- a/src/video_core/engines/shader_bytecode.h
+++ b/src/video_core/engines/shader_bytecode.h
@@ -78,6 +78,8 @@ union Attribute {
// shader, and a tuple of (TessCoord.x, TessCoord.y, TessCoord.z, ~) when inside a Tess Eval
// shader.
TessCoordInstanceIDVertexID = 47,
+ // TODO(bunnei): Figure out what this is used for. Super Mario Odyssey uses this.
+ Unknown_63 = 63,
};
union {