mirror of
https://github.com/DrBeef/Raze.git
synced 2024-11-15 08:52:00 +00:00
- increased amount of vertices to allow handling voxel packs.
This is merely a stopgap until the code can be properly refactored.
This commit is contained in:
parent
1054356cef
commit
598ce8a2ef
1 changed files with 2 additions and 2 deletions
|
@ -53,8 +53,8 @@ class FFlatVertexBuffer
|
|||
unsigned int mNumReserved;
|
||||
|
||||
|
||||
static const unsigned int BUFFER_SIZE = 2000000;
|
||||
static const unsigned int BUFFER_SIZE_TO_USE = 1999500;
|
||||
static const unsigned int BUFFER_SIZE = 4000000; // Was upped from 2000000 to account for voxels not being implemented with a separate vertex buffer.
|
||||
static const unsigned int BUFFER_SIZE_TO_USE = BUFFER_SIZE-500;
|
||||
|
||||
public:
|
||||
enum
|
||||
|
|
Loading…
Reference in a new issue