summaryrefslogtreecommitdiff
path: root/src/video_core/dirty_flags.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/video_core/dirty_flags.h')
-rw-r--r--src/video_core/dirty_flags.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/video_core/dirty_flags.h b/src/video_core/dirty_flags.h
index 875527ddd..702688ace 100644
--- a/src/video_core/dirty_flags.h
+++ b/src/video_core/dirty_flags.h
@@ -30,6 +30,12 @@ enum : u8 {
30 ColorBuffer7, 30 ColorBuffer7,
31 ZetaBuffer, 31 ZetaBuffer,
32 32
33 VertexBuffers,
34 VertexBuffer0,
35 VertexBuffer31 = VertexBuffer0 + 31,
36
37 IndexBuffer,
38
33 LastCommonEntry, 39 LastCommonEntry,
34}; 40};
35 41
@@ -47,6 +53,6 @@ void FillBlock(Tegra::Engines::Maxwell3D::DirtyState::Tables& tables, std::size_
47 FillBlock(tables[1], begin, num, index_b); 53 FillBlock(tables[1], begin, num, index_b);
48} 54}
49 55
50void SetupDirtyRenderTargets(Tegra::Engines::Maxwell3D::DirtyState::Tables& tables); 56void SetupDirtyFlags(Tegra::Engines::Maxwell3D::DirtyState::Tables& tables);
51 57
52} // namespace VideoCommon::Dirty 58} // namespace VideoCommon::Dirty