diff options
author | Tony Wasserka <NeoBrainX@gmail.com> | 2015-05-27 16:20:46 +0200 |
---|---|---|
committer | Tony Wasserka <NeoBrainX@gmail.com> | 2015-08-16 13:22:00 +0200 |
commit | 4cb302c8aeb86bdb7c7bd6f9e5d716e140868075 (patch) | |
tree | 3aebbc2a55c68a48cbf72bcf7652485c1ac9b745 /src/video_core/pica.h | |
parent | citra-qt: Print the correct swizzle mask for SRC2 in the shader disassembler. (diff) | |
download | yuzu-4cb302c8aeb86bdb7c7bd6f9e5d716e140868075.tar yuzu-4cb302c8aeb86bdb7c7bd6f9e5d716e140868075.tar.gz yuzu-4cb302c8aeb86bdb7c7bd6f9e5d716e140868075.tar.bz2 yuzu-4cb302c8aeb86bdb7c7bd6f9e5d716e140868075.tar.lz yuzu-4cb302c8aeb86bdb7c7bd6f9e5d716e140868075.tar.xz yuzu-4cb302c8aeb86bdb7c7bd6f9e5d716e140868075.tar.zst yuzu-4cb302c8aeb86bdb7c7bd6f9e5d716e140868075.zip |
Diffstat (limited to 'src/video_core/pica.h')
-rw-r--r-- | src/video_core/pica.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/video_core/pica.h b/src/video_core/pica.h index 6ce90f95a..36916f862 100644 --- a/src/video_core/pica.h +++ b/src/video_core/pica.h @@ -80,6 +80,11 @@ struct Regs { POSITION_Z = 2, POSITION_W = 3, + QUATERNION_X = 4, + QUATERNION_Y = 5, + QUATERNION_Z = 6, + QUATERNION_W = 7, + COLOR_R = 8, COLOR_G = 9, COLOR_B = 10, @@ -89,6 +94,12 @@ struct Regs { TEXCOORD0_V = 13, TEXCOORD1_U = 14, TEXCOORD1_V = 15, + + // TODO: Not verified + VIEW_X = 18, + VIEW_Y = 19, + VIEW_Z = 20, + TEXCOORD2_U = 22, TEXCOORD2_V = 23, |