summaryrefslogtreecommitdiff
path: root/src/video_core/pica.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/video_core/pica.h')
-rw-r--r--src/video_core/pica.h11
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 {
80 POSITION_Z = 2, 80 POSITION_Z = 2,
81 POSITION_W = 3, 81 POSITION_W = 3,
82 82
83 QUATERNION_X = 4,
84 QUATERNION_Y = 5,
85 QUATERNION_Z = 6,
86 QUATERNION_W = 7,
87
83 COLOR_R = 8, 88 COLOR_R = 8,
84 COLOR_G = 9, 89 COLOR_G = 9,
85 COLOR_B = 10, 90 COLOR_B = 10,
@@ -89,6 +94,12 @@ struct Regs {
89 TEXCOORD0_V = 13, 94 TEXCOORD0_V = 13,
90 TEXCOORD1_U = 14, 95 TEXCOORD1_U = 14,
91 TEXCOORD1_V = 15, 96 TEXCOORD1_V = 15,
97
98 // TODO: Not verified
99 VIEW_X = 18,
100 VIEW_Y = 19,
101 VIEW_Z = 20,
102
92 TEXCOORD2_U = 22, 103 TEXCOORD2_U = 22,
93 TEXCOORD2_V = 23, 104 TEXCOORD2_V = 23,
94 105