summaryrefslogtreecommitdiffstats
path: root/src/video_core/buffer_cache/buffer_cache_base.h
diff options
context:
space:
mode:
authorliamwhite <liamwhite@users.noreply.github.com>2023-06-07 20:03:57 +0200
committerGitHub <noreply@github.com>2023-06-07 20:03:57 +0200
commitcfb76d8f3ed8862bc341afeaf6d25a401e2976cf (patch)
tree30098242f24010db0da3cd6152a4a716d739b20d /src/video_core/buffer_cache/buffer_cache_base.h
parentMerge pull request #10583 from ameerj/ill-logic (diff)
parentgl_staging_buffers: Optimization to reduce fence waiting (diff)
downloadyuzu-cfb76d8f3ed8862bc341afeaf6d25a401e2976cf.tar
yuzu-cfb76d8f3ed8862bc341afeaf6d25a401e2976cf.tar.gz
yuzu-cfb76d8f3ed8862bc341afeaf6d25a401e2976cf.tar.bz2
yuzu-cfb76d8f3ed8862bc341afeaf6d25a401e2976cf.tar.lz
yuzu-cfb76d8f3ed8862bc341afeaf6d25a401e2976cf.tar.xz
yuzu-cfb76d8f3ed8862bc341afeaf6d25a401e2976cf.tar.zst
yuzu-cfb76d8f3ed8862bc341afeaf6d25a401e2976cf.zip
Diffstat (limited to 'src/video_core/buffer_cache/buffer_cache_base.h')
-rw-r--r--src/video_core/buffer_cache/buffer_cache_base.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/video_core/buffer_cache/buffer_cache_base.h b/src/video_core/buffer_cache/buffer_cache_base.h
index c689fe06b..60a1f285e 100644
--- a/src/video_core/buffer_cache/buffer_cache_base.h
+++ b/src/video_core/buffer_cache/buffer_cache_base.h
@@ -173,6 +173,7 @@ class BufferCache : public VideoCommon::ChannelSetupCaches<BufferCacheChannelInf
static constexpr bool USE_MEMORY_MAPS = P::USE_MEMORY_MAPS;
static constexpr bool SEPARATE_IMAGE_BUFFERS_BINDINGS = P::SEPARATE_IMAGE_BUFFER_BINDINGS;
static constexpr bool IMPLEMENTS_ASYNC_DOWNLOADS = P::IMPLEMENTS_ASYNC_DOWNLOADS;
+ static constexpr bool USE_MEMORY_MAPS_FOR_UPLOADS = P::USE_MEMORY_MAPS_FOR_UPLOADS;
static constexpr s64 DEFAULT_EXPECTED_MEMORY = 512_MiB;
static constexpr s64 DEFAULT_CRITICAL_MEMORY = 1_GiB;