]> git.tdb.fi Git - libs/gl.git/blobdiff - source/vertexarray.h
Lots of comment updates
[libs/gl.git] / source / vertexarray.h
index c7609afe6ae419445e777e032975fdcb61f8a3ad..039dfa8b13ea3ed467dcdf3825b0ddaa64b825cf 100644 (file)
@@ -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<float> data;
        unsigned stride;
-       Buffer *vbuf;
-       bool own_vbuf;
+       RefPtr<Buffer> 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);