From c6a178f72dd742144fe11948d3b49bb59b2c938e Mon Sep 17 00:00:00 2001 From: Kasen IO Date: Wed, 5 Aug 2020 20:43:58 -0400 Subject: [PATCH] Update default texture memory from Auto (1GB) -> Auto (2GB). --- libraries/gpu-gl-common/src/gpu/gl/GLTextureTransfer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/gpu-gl-common/src/gpu/gl/GLTextureTransfer.cpp b/libraries/gpu-gl-common/src/gpu/gl/GLTextureTransfer.cpp index f4e81448cc..c9a5856a8d 100644 --- a/libraries/gpu-gl-common/src/gpu/gl/GLTextureTransfer.cpp +++ b/libraries/gpu-gl-common/src/gpu/gl/GLTextureTransfer.cpp @@ -15,7 +15,7 @@ #define OVERSUBSCRIBED_PRESSURE_VALUE 0.95f #define UNDERSUBSCRIBED_PRESSURE_VALUE 0.85f -#define DEFAULT_ALLOWED_TEXTURE_MEMORY_MB ((size_t)1024) +#define DEFAULT_ALLOWED_TEXTURE_MEMORY_MB ((size_t)2048) #define MAX_RESOURCE_TEXTURES_PER_FRAME 2 #define NO_BUFFER_WORK_SLEEP_TIME_MS 2 #define THREADED_TEXTURE_BUFFERING 1