X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fmesh.cpp;h=91dadeab00af09b584aaf1abad7b54333bbc7812;hb=61ff840cd211f10d45dca8c4dad2cca5f68aaa42;hp=d474a27f116cc0c3e7175f7a64488120d4e83805;hpb=c233a90fd05f1f5424d7fca94bb6b999f3061271;p=libs%2Fgl.git diff --git a/source/mesh.cpp b/source/mesh.cpp index d474a27f..91dadeab 100644 --- a/source/mesh.cpp +++ b/source/mesh.cpp @@ -80,16 +80,17 @@ void Mesh::refresh() const { if(dirty&1) { - unbind(); for(list::const_iterator i=batches.begin(); i!=batches.end(); ++i) i->refresh(); } if(dirty&2) { - glBindVertexArray(vao_id); - BufferAlias vbuf_alias(*vbuf); - Bind bind_vbuf(vbuf_alias); + Bind bind_vbuf(vbuf, ARRAY_BUFFER); + + bool bind_here = !current(); + if(bind_here) + glBindVertexArray(vao_id); const VertexFormat &fmt = vertices.get_format(); unsigned stride = get_stride(fmt)*sizeof(float); @@ -108,7 +109,9 @@ void Mesh::refresh() const ptr += sz; } glBindBuffer(ELEMENT_ARRAY_BUFFER, ibuf->get_id()); - glBindVertexArray(0); + + if(bind_here) + glBindVertexArray(0); } dirty = 0; @@ -152,24 +155,19 @@ void Mesh::draw() const refresh(); if(!current()) - { vertices.apply(); - if(ibuf) - ibuf->bind_to(ELEMENT_ARRAY_BUFFER); - } - + Bind bind_ibuf(ibuf, ELEMENT_ARRAY_BUFFER); Bind bind_winding(winding); for(list::const_iterator i=batches.begin(); i!=batches.end(); ++i) i->draw(); - - if(!current() && ibuf) - Buffer::unbind_from(ELEMENT_ARRAY_BUFFER); } void Mesh::draw(Renderer &renderer) const { - vertices.apply(); + refresh(); + + renderer.set_mesh(this); renderer.set_element_buffer(ibuf); renderer.set_winding_test(winding); @@ -183,16 +181,8 @@ void Mesh::bind() const called. Thus unbind won't try to call a null function either. */ if(!vao_id) unbind(); - else - { - if(Buffer::current(ELEMENT_ARRAY_BUFFER)) - { - unbind(); - Buffer::unbind_from(ELEMENT_ARRAY_BUFFER); - } - if(set_current(this)) - glBindVertexArray(vao_id); - } + else if(set_current(this)) + glBindVertexArray(vao_id); } void Mesh::unbind()