Working on excessive batch count bug.

This commit is contained in:
David Williams
2008-01-17 21:44:16 +00:00
parent bb67aaceb1
commit a0bcd6b214
3 changed files with 44 additions and 11 deletions

View File

@ -1,8 +1,8 @@
#ifndef __IndexedSurfacePatch_H__
#define __IndexedSurfacePatch_H__
#include <set>
#include <list>
//#include <set>
//#include <list>
#include "Constants.h"
#include "IntegralVector3.h"
@ -28,6 +28,10 @@ namespace Ogre
long int vertexIndices[OGRE_REGION_SIDE_LENGTH*2+1][OGRE_REGION_SIDE_LENGTH*2+1][OGRE_REGION_SIDE_LENGTH*2+1];
static long int noOfVerticesSubmitted;
static long int noOfVerticesAccepted;
static long int noOfTrianglesSubmitted;
private:
bool m_AllowDuplicateVertices;
};