diff options
| author | ReinUsesLisp <reinuseslisp@airmail.cc> | 2019-12-26 22:14:10 -0300 |
|---|---|---|
| committer | ReinUsesLisp <reinuseslisp@airmail.cc> | 2020-02-28 17:56:41 -0300 |
| commit | eed789d0d134fbeef1c16f9829b5c1b4b7dabb17 (patch) | |
| tree | 4a7dba754df1a71c29de64cfaab34b56b0d72dff /src/video_core/dirty_flags.h | |
| parent | b92dfcd7f2a03b04a1d6090d7dd2684986f7adee (diff) | |
video_core: Reintroduce dirty flags infrastructure
Diffstat (limited to 'src/video_core/dirty_flags.h')
| -rw-r--r-- | src/video_core/dirty_flags.h | 28 |
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 @@ +// Copyright 2019 yuzu Emulator Project +// Licensed under GPLv2 or any later version +// Refer to the license.txt file included. + +#pragma once + +#include "common/common_types.h" + +namespace VideoCommon::Dirty { + +enum : u8 { + NullEntry = 0, + + RenderTargets, + ColorBuffer0, + ColorBuffer1, + ColorBuffer2, + ColorBuffer3, + ColorBuffer4, + ColorBuffer5, + ColorBuffer6, + ColorBuffer7, + ZetaBuffer, + + LastCommonEntry, +}; + +} // namespace VideoCommon::Dirty |
