summaryrefslogtreecommitdiff
path: root/src/video_core/dirty_flags.h
diff options
context:
space:
mode:
authorGravatar ReinUsesLisp2019-12-26 22:14:10 -0300
committerGravatar ReinUsesLisp2020-02-28 17:56:41 -0300
commiteed789d0d134fbeef1c16f9829b5c1b4b7dabb17 (patch)
tree4a7dba754df1a71c29de64cfaab34b56b0d72dff /src/video_core/dirty_flags.h
parentgl_state: Remove completely (diff)
downloadyuzu-eed789d0d134fbeef1c16f9829b5c1b4b7dabb17.tar.gz
yuzu-eed789d0d134fbeef1c16f9829b5c1b4b7dabb17.tar.xz
yuzu-eed789d0d134fbeef1c16f9829b5c1b4b7dabb17.zip
video_core: Reintroduce dirty flags infrastructure
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