mirror of https://github.com/axmolengine/axmol.git
Merge pull request #7955 from dabingnn/v3_reverse_VBOSIZE
roll back, VBO_SIZE to 65536, INDEX_VBO_SIZE to 65536 * 1.5
This commit is contained in:
commit
78d4e9797c
|
@ -76,8 +76,8 @@ Whenever possible prefer to use `QuadCommand` objects since the renderer will au
|
|||
class CC_DLL Renderer
|
||||
{
|
||||
public:
|
||||
static const int VBO_SIZE = 8192;
|
||||
static const int INDEX_VBO_SIZE = 8192 * 6 / 4;
|
||||
static const int VBO_SIZE = 65536;
|
||||
static const int INDEX_VBO_SIZE = VBO_SIZE * 6 / 4;
|
||||
|
||||
static const int BATCH_QUADCOMMAND_RESEVER_SIZE = 64;
|
||||
|
||||
|
|
Loading…
Reference in New Issue