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.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/src/video_core/dirty_flags.h b/src/video_core/dirty_flags.h
new file mode 100644
index 000000000..d9058bcab
--- /dev/null
+++ b/src/video_core/dirty_flags.h
@@ -0,0 +1,28 @@
1// Copyright 2019 yuzu Emulator Project
2// Licensed under GPLv2 or any later version
3// Refer to the license.txt file included.
4
5#pragma once
6
7#include "common/common_types.h"
8
9namespace VideoCommon::Dirty {
10
11enum : u8 {
12 NullEntry = 0,
13
14 RenderTargets,
15 ColorBuffer0,
16 ColorBuffer1,
17 ColorBuffer2,
18 ColorBuffer3,
19 ColorBuffer4,
20 ColorBuffer5,
21 ColorBuffer6,
22 ColorBuffer7,
23 ZetaBuffer,
24
25 LastCommonEntry,
26};
27
28} // namespace VideoCommon::Dirty