Implemented cylinder shape, also fixed the coordinate system (again). I fucking hate...
[fail.git] / scenegraph / IndexBuffer.h
bloba4ae4a491d58c78281d328ce9586a96ed607b312
1 #ifndef AWFUL_SCENEGRAPH_INDEXBUFFER_H_
2 #define AWFUL_SCENEGRAPH_INDEXBUFFER_H_
4 #include "core/core.h"
6 namespace awful { namespace scenegraph
8 class IndexBuffer : public Serializable
10 friend class Primitive;
12 public:
13 virtual void bind() const = 0;
15 protected:
16 IndexBuffer() {}
18 static int ms_GLType;
19 static const uint8_t* ms_pIndexStart;
20 static int ms_Stride;
24 #endif