summaryrefslogtreecommitdiffstats
path: root/src/video_core/pica.h
diff options
context:
space:
mode:
authorSubv <subv2112@gmail.com>2015-08-23 05:09:00 +0200
committerSubv <subv2112@gmail.com>2015-08-30 22:46:22 +0200
commit12a11472f1cdc7a6071c1d161b09b56dab0bed51 (patch)
treed32924931af8a39c0c11f4fd485bfc386e7300d8 /src/video_core/pica.h
parentMerge pull request #1038 from LittleWhite-tb/contributing-include (diff)
downloadyuzu-12a11472f1cdc7a6071c1d161b09b56dab0bed51.tar
yuzu-12a11472f1cdc7a6071c1d161b09b56dab0bed51.tar.gz
yuzu-12a11472f1cdc7a6071c1d161b09b56dab0bed51.tar.bz2
yuzu-12a11472f1cdc7a6071c1d161b09b56dab0bed51.tar.lz
yuzu-12a11472f1cdc7a6071c1d161b09b56dab0bed51.tar.xz
yuzu-12a11472f1cdc7a6071c1d161b09b56dab0bed51.tar.zst
yuzu-12a11472f1cdc7a6071c1d161b09b56dab0bed51.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 58b924f9e..03a56afe6 100644
--- a/src/video_core/pica.h
+++ b/src/video_core/pica.h
@@ -757,7 +757,12 @@ struct Regs {
// Number of vertices to render
u32 num_vertices;
- INSERT_PADDING_WORDS(0x5);
+ INSERT_PADDING_WORDS(0x1);
+
+ // The index of the first vertex to render
+ u32 vertex_offset;
+
+ INSERT_PADDING_WORDS(0x3);
// These two trigger rendering of triangles
u32 trigger_draw;