summaryrefslogtreecommitdiffstats
path: root/src/video_core/cache_types.h
blob: 1a5db3c5524407cf8555eca2fd901ddb8e1ccd18 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// SPDX-FileCopyrightText: Copyright 2020 yuzu Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later

#pragma once

#include "common/common_funcs.h"
#include "common/common_types.h"

namespace VideoCommon {

enum class CacheType : u32 {
    None = 0,
    TextureCache = 1 << 0,
    QueryCache = 1 << 1,
    BufferCache = 1 << 2,
    ShaderCache = 1 << 3,
    NoTextureCache = QueryCache | BufferCache | ShaderCache,
    NoBufferCache = TextureCache | QueryCache | ShaderCache,
    NoQueryCache = TextureCache | BufferCache | ShaderCache,
    All = TextureCache | QueryCache | BufferCache | ShaderCache,
};
DECLARE_ENUM_FLAG_OPERATORS(CacheType)

} // namespace VideoCommon