From c4e4ff207f433aadc6782316d8d64c5610cee2e6 Mon Sep 17 00:00:00 2001 From: y2keeth Date: Fri, 9 Oct 2015 09:50:57 -0400 Subject: [PATCH] Increase vertex memory for custom model content --- neo/renderer/VertexCache.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/neo/renderer/VertexCache.h b/neo/renderer/VertexCache.h index 16fb5ff7..2fca8d6c 100644 --- a/neo/renderer/VertexCache.h +++ b/neo/renderer/VertexCache.h @@ -37,7 +37,7 @@ const int VERTCACHE_NUM_FRAMES = 2; // there are a lot more static indexes than vertexes, because interactions are just new // index lists that reference existing vertexes const int STATIC_INDEX_MEMORY = 31 * 1024 * 1024; -const int STATIC_VERTEX_MEMORY = 31 * 1024 * 1024; // make sure it fits in VERTCACHE_OFFSET_MASK! +const int STATIC_VERTEX_MEMORY = 62 * 1024 * 1024; // make sure it fits in VERTCACHE_OFFSET_MASK! // vertCacheHandle_t packs size, offset, and frame number into 64 bits typedef uint64 vertCacheHandle_t;