From 7dd1d4e9abb1998bf5475a409c51aaafa756d740 Mon Sep 17 00:00:00 2001 From: assiduous Date: Thu, 28 Nov 2024 16:37:12 -0800 Subject: [PATCH] USD Viewer: set geometry load budget to 64 MB --- Samples/USDViewer/src/USDViewer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Samples/USDViewer/src/USDViewer.cpp b/Samples/USDViewer/src/USDViewer.cpp index c2a9b741..378671f3 100644 --- a/Samples/USDViewer/src/USDViewer.cpp +++ b/Samples/USDViewer/src/USDViewer.cpp @@ -349,7 +349,7 @@ void USDViewer::LoadStage() DelegateCI.PackVertexNormals = true; DelegateCI.PackVertexPositions = true; DelegateCI.TextureLoadBudget = Uint64{1024} << Uint64{20}; - DelegateCI.GeometryLoadBudget = Uint64{128} << Uint64{20}; + DelegateCI.GeometryLoadBudget = Uint64{64} << Uint64{20}; if (m_DeviceWithCache.GetDeviceInfo().Features.BindlessResources) {