X-Git-Url: http://git.tdb.fi/?p=libs%2Fgl.git;a=blobdiff_plain;f=source%2Fvertexarray.h;fp=source%2Fvertexarray.h;h=6be5616e95686c97cc003086e80871e2ca4b2a4a;hp=7e6d04f5a05aab16c15d6dfb980748f93235cef0;hb=485315ca65cb40f33253008a79b0933997bd74f5;hpb=69bd7cdfb824c9189ef89e112222141c28b163f6 diff --git a/source/vertexarray.h b/source/vertexarray.h index 7e6d04f5..6be5616e 100644 --- a/source/vertexarray.h +++ b/source/vertexarray.h @@ -73,23 +73,6 @@ private: void set_dirty(); }; -void array_element(int); -void draw_arrays(PrimitiveType, int, unsigned); -void draw_elements(PrimitiveType, unsigned, DataType, const void *); -void draw_range_elements(PrimitiveType, unsigned, unsigned, unsigned, DataType, const void *); - -inline void draw_elements(PrimitiveType mode, unsigned count, const unsigned *indices) -{ draw_elements(mode, count, UNSIGNED_INT, indices); } - -inline void draw_elements(PrimitiveType mode, unsigned count, const unsigned short *indices) -{ draw_elements(mode, count, UNSIGNED_SHORT, indices); } - -inline void draw_range_elements(PrimitiveType mode, unsigned low, unsigned high, unsigned count, const unsigned short *indices) -{ draw_range_elements(mode, low, high, count, UNSIGNED_SHORT, indices); } - -inline void draw_range_elements(PrimitiveType mode, unsigned low, unsigned high, unsigned count, const unsigned *indices) -{ draw_range_elements(mode, low, high, count, UNSIGNED_INT, indices); } - } // namespace GL } // namespace Msp