X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fvertexarray.h;h=039dfa8b13ea3ed467dcdf3825b0ddaa64b825cf;hb=02dc3bda81eb0d421670b744c1c56aaf1104d5bf;hp=c7609afe6ae419445e777e032975fdcb61f8a3ad;hpb=4443707c752ab8ee288f1c22be08cf82f27439d7;p=libs%2Fgl.git diff --git a/source/vertexarray.h b/source/vertexarray.h index c7609afe..039dfa8b 100644 --- a/source/vertexarray.h +++ b/source/vertexarray.h @@ -1,10 +1,3 @@ -/* $Id$ - -This file is part of libmspgl -Copyright © 2007-2010 Mikko Rasa, Mikkosoft Productions -Distributed under the LGPL -*/ - #ifndef MSP_GL_VERTEXARRAY_H_ #define MSP_GL_VERTEXARRAY_H_ @@ -51,8 +44,11 @@ private: VertexFormat format; std::vector data; unsigned stride; - Buffer *vbuf; - bool own_vbuf; + RefPtr vbuf; + bool defer_vbuf; + mutable bool dirty; + + static ArrayMask enabled_arrays; VertexArray(const VertexArray &); VertexArray &operator=(const VertexArray &); @@ -69,13 +65,12 @@ public: void clear(); void reset(const VertexFormat &); void apply() const; - void update_data(); float *append(); - float *operator[](unsigned i) { return &data[0]+i*stride; } + float *modify(unsigned); const float *operator[](unsigned i) const { return &data[0]+i*stride; } private: - static ArrayMask enabled_arrays; + void set_dirty(); }; void array_element(int);