mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2026-08-23 16:06:30 +00:00
[TEST] Adjusments on deferred destruction implementation
This commit is contained in:
@@ -107,9 +107,9 @@ void TextureCache<P>::QueueEvictionDownload(Image& image) {
|
||||
pending_eviction_downloads.push_back(PendingEvictionDownload{
|
||||
.staging = staging,
|
||||
.gpu_memory = gpu_memory,
|
||||
.gpu_addr = image.gpu_addr,
|
||||
.info = image.info,
|
||||
.copies = std::move(copies),
|
||||
.info = image.info,
|
||||
.gpu_addr = image.gpu_addr,
|
||||
.sync_point = runtime.CurrentSyncPoint(),
|
||||
});
|
||||
}
|
||||
|
||||
@@ -513,9 +513,9 @@ private:
|
||||
struct PendingEvictionDownload {
|
||||
AsyncBuffer staging;
|
||||
Tegra::MemoryManager* gpu_memory;
|
||||
GPUVAddr gpu_addr;
|
||||
VideoCommon::ImageInfo info;
|
||||
boost::container::small_vector<VideoCommon::BufferImageCopy, 16> copies;
|
||||
VideoCommon::ImageInfo info;
|
||||
GPUVAddr gpu_addr;
|
||||
u64 sync_point;
|
||||
};
|
||||
std::deque<PendingEvictionDownload> pending_eviction_downloads;
|
||||
|
||||
Reference in New Issue
Block a user