more bt* to b3*

This commit is contained in:
erwin coumans
2013-04-16 17:08:59 -07:00
parent faabffc23d
commit e646754228
116 changed files with 2466 additions and 3034 deletions

View File

@@ -1,7 +1,7 @@
#ifndef GL_INSTANCE_GRAPHICS_SHAPE_H
#define GL_INSTANCE_GRAPHICS_SHAPE_H
#include "BulletCommon/btAlignedObjectArray.h"
#include "BulletCommon/b3AlignedObjectArray.h"
struct GLInstanceVertex
{
@@ -11,9 +11,9 @@ struct GLInstanceVertex
};
struct GLInstanceGraphicsShape
{
btAlignedObjectArray<GLInstanceVertex>* m_vertices;
b3AlignedObjectArray<GLInstanceVertex>* m_vertices;
int m_numvertices;
btAlignedObjectArray<int>* m_indices;
b3AlignedObjectArray<int>* m_indices;
int m_numIndices;
float m_scaling[4];
};