summaryrefslogtreecommitdiffstats
path: root/src/video_core/texture_cache/types.h
diff options
context:
space:
mode:
authorFernando Sahmkow <fsahmkow27@gmail.com>2024-02-03 22:51:04 +0100
committerFernando Sahmkow <fsahmkow27@gmail.com>2024-02-04 20:01:47 +0100
commit4841dc0b745389fb03edbf900f25511bee4b3d88 (patch)
tree40149c44691369597dec8f126bab6bc1b808e93f /src/video_core/texture_cache/types.h
parentMerge pull request #12901 from Kelebek1/timezone_firmware_fix (diff)
downloadyuzu-4841dc0b745389fb03edbf900f25511bee4b3d88.tar
yuzu-4841dc0b745389fb03edbf900f25511bee4b3d88.tar.gz
yuzu-4841dc0b745389fb03edbf900f25511bee4b3d88.tar.bz2
yuzu-4841dc0b745389fb03edbf900f25511bee4b3d88.tar.lz
yuzu-4841dc0b745389fb03edbf900f25511bee4b3d88.tar.xz
yuzu-4841dc0b745389fb03edbf900f25511bee4b3d88.tar.zst
yuzu-4841dc0b745389fb03edbf900f25511bee4b3d88.zip
Diffstat (limited to '')
-rw-r--r--src/video_core/texture_cache/types.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/video_core/texture_cache/types.h b/src/video_core/texture_cache/types.h
index 0453456b4..07c304386 100644
--- a/src/video_core/texture_cache/types.h
+++ b/src/video_core/texture_cache/types.h
@@ -5,21 +5,21 @@
#include "common/common_funcs.h"
#include "common/common_types.h"
-#include "video_core/texture_cache/slot_vector.h"
+#include "common/slot_vector.h"
namespace VideoCommon {
constexpr size_t NUM_RT = 8;
constexpr size_t MAX_MIP_LEVELS = 14;
-constexpr SlotId CORRUPT_ID{0xfffffffe};
+constexpr Common::SlotId CORRUPT_ID{0xfffffffe};
-using ImageId = SlotId;
-using ImageMapId = SlotId;
-using ImageViewId = SlotId;
-using ImageAllocId = SlotId;
-using SamplerId = SlotId;
-using FramebufferId = SlotId;
+using ImageId = Common::SlotId;
+using ImageMapId = Common::SlotId;
+using ImageViewId = Common::SlotId;
+using ImageAllocId = Common::SlotId;
+using SamplerId = Common::SlotId;
+using FramebufferId = Common::SlotId;
/// Fake image ID for null image views
constexpr ImageId NULL_IMAGE_ID{0};