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:
minggo 2014-09-05 18:22:46 +08:00
commit 78d4e9797c
1 changed files with 2 additions and 2 deletions

View File

@ -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;