summaryrefslogtreecommitdiffstats
path: root/src/video_core/pica.h
diff options
context:
space:
mode:
authorYuri Kunde Schlesner <yuriks@yuriks.net>2016-12-19 01:50:04 +0100
committerYuri Kunde Schlesner <yuriks@yuriks.net>2017-01-30 06:31:36 +0100
commitfccb28d2e9f2f813230912e5cf1fea7f352797c7 (patch)
treed8571b169b586691f135908ce72aa29ca0c9767f /src/video_core/pica.h
parentVideoCore: Rename some types to more accurate names (diff)
downloadyuzu-fccb28d2e9f2f813230912e5cf1fea7f352797c7.tar
yuzu-fccb28d2e9f2f813230912e5cf1fea7f352797c7.tar.gz
yuzu-fccb28d2e9f2f813230912e5cf1fea7f352797c7.tar.bz2
yuzu-fccb28d2e9f2f813230912e5cf1fea7f352797c7.tar.lz
yuzu-fccb28d2e9f2f813230912e5cf1fea7f352797c7.tar.xz
yuzu-fccb28d2e9f2f813230912e5cf1fea7f352797c7.tar.zst
yuzu-fccb28d2e9f2f813230912e5cf1fea7f352797c7.zip
Diffstat (limited to 'src/video_core/pica.h')
-rw-r--r--src/video_core/pica.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/video_core/pica.h b/src/video_core/pica.h
index 5afc9d5dd..c772896e0 100644
--- a/src/video_core/pica.h
+++ b/src/video_core/pica.h
@@ -1176,7 +1176,12 @@ struct Regs {
}
} command_buffer;
- INSERT_PADDING_WORDS(0x07);
+ INSERT_PADDING_WORDS(4);
+
+ /// Number of input attributes to the vertex shader minus 1
+ BitField<0, 4, u32> max_input_attrib_index;
+
+ INSERT_PADDING_WORDS(2);
enum class GPUMode : u32 {
Drawing = 0,