summaryrefslogtreecommitdiffhomepage
path: root/StarsEx
diff options
context:
space:
mode:
authorAki <please@ignore.pl>2022-04-07 22:30:15 +0200
committerAki <please@ignore.pl>2022-04-07 22:30:15 +0200
commit4c2d98ef91e05e98b3816dbdef24ba0b2be96729 (patch)
tree04d9cae29e32b7777d2e0171ef66f0dc03168356 /StarsEx
parentee736c4236803c31f9d6e98f1e9730387633b637 (diff)
downloadstarshatter-4c2d98ef91e05e98b3816dbdef24ba0b2be96729.zip
starshatter-4c2d98ef91e05e98b3816dbdef24ba0b2be96729.tar.gz
starshatter-4c2d98ef91e05e98b3816dbdef24ba0b2be96729.tar.bz2
Increased maximum polys and vertices fourfold
Diffstat (limited to 'StarsEx')
-rw-r--r--StarsEx/Solid.h4
1 files changed, 2 insertions, 2 deletions
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();