Changed unsigned int to GLuint for OSX build.

This commit is contained in:
Robert Osfield 2006-06-28 20:38:32 +00:00
parent 4dff461b1c
commit 17e51e73c4

View File

@ -161,11 +161,11 @@ protected:
int m_tesselation;
std::vector<BSP_VERTEX> m_vertices;
std::vector<unsigned int> m_indices;
std::vector<GLuint> m_indices;
//arrays for multi_draw_arrays
std::vector<int> m_trianglesPerRow;
std::vector<unsigned int *> m_rowIndexPointers;
std::vector<GLuint *> m_rowIndexPointers;
};