X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fvertexarray.h;h=3b67527864a014908b3b2349d3616a455ec39699;hb=5172d32d67595ea0b70184fadcfcb8e023cccbc8;hp=c7609afe6ae419445e777e032975fdcb61f8a3ad;hpb=4443707c752ab8ee288f1c22be08cf82f27439d7;p=libs%2Fgl.git diff --git a/source/vertexarray.h b/source/vertexarray.h index c7609afe..3b675278 100644 --- a/source/vertexarray.h +++ b/source/vertexarray.h @@ -51,8 +51,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 +72,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);