]> git.tdb.fi Git - libs/gl.git/blobdiff - source/vertexarray.cpp
Convert VertexArray into a Bufferable
[libs/gl.git] / source / vertexarray.cpp
index 3fca527d75aee2dba990a176a2415f514a537f92..e453a3f12a569a70f7868288647dee37c6f45b33 100644 (file)
@@ -35,7 +35,7 @@ void VertexArray::reset(const VertexFormat &f)
 
        arrays.clear();
 
-       unsigned offset = 0;
+       unsigned offs = 0;
        for(const unsigned char *c=format.begin(); c!=format.end(); ++c)
        {
                unsigned slot = get_array_slot(*c);
@@ -44,9 +44,9 @@ void VertexArray::reset(const VertexFormat &f)
 
                Array &arr = arrays[slot];
                arr.component = *c;
-               arr.offset = offset;
+               arr.offset = offs;
 
-               offset += get_component_size(*c);
+               offs += get_component_size(*c);
        }
 }
 
@@ -75,12 +75,6 @@ unsigned VertexArray::get_array_slot(unsigned char comp)
        }
 }
 
-void VertexArray::use_vertex_buffer(Buffer *b)
-{
-       vbuf = b;
-       dirty = true;
-}
-
 void VertexArray::clear()
 {
        data.clear();
@@ -94,19 +88,24 @@ void VertexArray::reserve(unsigned n)
 float *VertexArray::append()
 {
        data.insert(data.end(), stride, 0.0f);
-       set_dirty();
+       dirty = true;
        return &*(data.end()-stride);
 }
 
 float *VertexArray::modify(unsigned i)
 {
-       set_dirty();
+       dirty = true;
        return &data[0]+i*stride;
 }
 
-void VertexArray::set_dirty()
+unsigned VertexArray::get_data_size() const
 {
-       dirty = true;
+       return data.size()*sizeof(float);
+}
+
+void VertexArray::upload_data() const
+{
+       get_buffer()->sub_data(get_offset(), get_data_size(), &data[0]);
 }
 
 void VertexArray::apply() const
@@ -122,17 +121,15 @@ void VertexArray::apply() const
        if(!set_current(this) && !dirty)
                return;
 
+       Buffer *vbuf = get_buffer();
        if(vbuf)
        {
                vbuf->bind_to(ARRAY_BUFFER);
                if(dirty)
-               {
-                       vbuf->data(data.size()*sizeof(float), &data[0]);
-                       dirty = false;
-               }
+                       update_buffer();
        }
 
-       const float *base = (vbuf ? 0 : &data[0]);
+       const float *base = (vbuf ? reinterpret_cast<float *>(get_offset()) : &data[0]);
        unsigned stride_bytes = stride*sizeof(float);
        apply_arrays(&arrays, (old ? &old->arrays : 0), base, stride_bytes);