X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fbuffer.cpp;h=d8bb28028ee686380e48b77613c039906df40a35;hb=c233a90fd05f1f5424d7fca94bb6b999f3061271;hp=84c72716d0e5da16cebb42fcd8e191c093ae1bd3;hpb=6afbace895a7bbcf216ab8e48280ea0303ab5892;p=libs%2Fgl.git diff --git a/source/buffer.cpp b/source/buffer.cpp index 84c72716..d8bb2802 100644 --- a/source/buffer.cpp +++ b/source/buffer.cpp @@ -1,8 +1,10 @@ #include -#include "arb_pixel_buffer_object.h" -#include "arb_uniform_buffer_object.h" -#include "arb_vertex_buffer_object.h" +#include +#include +#include #include "buffer.h" +#include "error.h" +#include "mesh.h" #include "misc.h" using namespace std; @@ -67,12 +69,17 @@ void Buffer::bind_to(BufferType t) const { if(t!=type) require_buffer_type(t); + // Don't change the binding in a mesh's vertex array object + if(t==ELEMENT_ARRAY_BUFFER && Mesh::current()) + throw invalid_operation("Buffer::bind_to(ELEMENT_ARRAY_BUFFER)"); if(set_current(t, this)) glBindBuffer(t, id); } void Buffer::unbind_from(BufferType type) { + if(type==ELEMENT_ARRAY_BUFFER && Mesh::current()) + throw invalid_operation("Buffer::unbind_from(ELEMENT_ARRAY_BUFFER)"); if(set_current(type, 0)) glBindBuffer(type, 0); } @@ -151,13 +158,13 @@ const BufferRange *&BufferRange::binding(BufferType type, unsigned index) if(type==UNIFORM_BUFFER) { if(index>=get_n_uniform_buffer_bindings()) - throw out_of_range("Buffer::binding"); + throw out_of_range("BufferRange::binding"); if(bound_uniform.size()<=index) bound_uniform.resize(index+1); return bound_uniform[index]; } else - throw invalid_argument("Buffer::binding"); + throw invalid_argument("BufferRange::binding"); } bool BufferRange::set_current(BufferType type, unsigned index, const BufferRange *buf)