From 4c2d98ef91e05e98b3816dbdef24ba0b2be96729 Mon Sep 17 00:00:00 2001 From: Aki Date: Thu, 7 Apr 2022 22:30:15 +0200 Subject: Increased maximum polys and vertices fourfold --- StarsEx/Solid.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'StarsEx') diff --git a/StarsEx/Solid.h b/StarsEx/Solid.h index 5cb4464..e02d8b2 100644 --- a/StarsEx/Solid.h +++ b/StarsEx/Solid.h @@ -110,7 +110,7 @@ class Model public: static const char* TYPENAME() { return "Model"; } - enum { MAX_VERTS = 64000, MAX_POLYS = 16000 }; + enum { MAX_VERTS = 256000, MAX_POLYS = 64000 }; Model(); Model(const Model& m); @@ -181,7 +181,7 @@ class Surface public: static const char* TYPENAME() { return "Surface"; } - enum { HIDDEN=1, LOCKED=2, SIMPLE=4, MAX_VERTS=64000, MAX_POLYS=16000 }; + enum { HIDDEN=1, LOCKED=2, SIMPLE=4, MAX_VERTS=256000, MAX_POLYS=64000 }; Surface(); ~Surface(); -- cgit v1.1