22 #ifndef HPL_VERTEXBUFFER_TGL_H 23 #define HPL_VERTEXBUFFER_TGL_H 25 #include "hpl1/engine/graphics/VertexBuffer.h" 31 class VertexBufferTGL :
public iVertexBuffer {
33 VertexBufferTGL(iLowLevelGraphics *apLowLevelGraphics, tVertexFlag aFlags,
34 eVertexBufferDrawType aDrawType, eVertexBufferUsageType aUsageType,
35 int alReserveVtxSize,
int alReserveIdxSize);
38 void AddVertex(tVertexFlag aType,
const cVector3f &avVtx);
39 void AddColor(tVertexFlag aType,
const cColor &aColor);
40 void AddIndex(
unsigned int alIndex);
42 bool Compile(tVertexCompileFlag aFlags);
43 void UpdateData(tVertexFlag aTypes,
bool abIndices);
45 void CreateShadowDouble(
bool abUpdateData);
47 void Transform(
const cMatrixf &mtxTransform);
49 void Draw(eVertexBufferDrawType aDrawType);
50 void DrawIndices(
unsigned int *apIndices,
int alCount,
51 eVertexBufferDrawType aDrawType = eVertexBufferDrawType_LastEnum);
56 iVertexBuffer *CreateCopy(eVertexBufferUsageType aUsageType);
58 cBoundingVolume CreateBoundingVolume();
60 float *GetArray(tVertexFlag aType);
61 unsigned int *GetIndices();
63 void ResizeArray(tVertexFlag aType,
int alSize);
64 void ResizeIndices(
int alSize);
70 cVector3f GetVector3(tVertexFlag aType,
unsigned alIdx);
71 cVector3f GetVector4(tVertexFlag aType,
unsigned alIdx);
72 cColor GetColor(tVertexFlag aType,
unsigned alIdx);
73 unsigned int GetIndex(tVertexFlag aType,
unsigned alIdx);
76 void SetVertexStates(tVertexFlag aFlags);
78 tFloatVec mvVertexArray[klNumOfVertexFlags];
79 tUIntVec mvIndexArray;
83 bool mbHasShadowDouble;
90 #endif // HPL_RENDERER3D_OGL_H