Buffer Cache: Fully rework the buffer cache.

This commit is contained in:
Fernando Sahmkow
2022-11-20 00:09:56 +01:00
parent 9bf19b04f6
commit a16c261131
12 changed files with 1644 additions and 1091 deletions

View File

@@ -0,0 +1,9 @@
// SPDX-FileCopyrightText: Copyright 2022 yuzu Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
#include "video_core/buffer_cache/buffer_cache.h"
#include "video_core/renderer_vulkan/vk_buffer_cache.h"
namespace VideoCommon {
template class VideoCommon::BufferCache<Vulkan::BufferCacheParams>;
}