X-Git-Url: http://git.tdb.fi/?p=libs%2Fgl.git;a=blobdiff_plain;f=source%2Fbuffer.cpp;h=d8bb28028ee686380e48b77613c039906df40a35;hp=a502190f82058c5b67aa4b53dada321bbec95cbf;hb=c233a90fd05f1f5424d7fca94bb6b999f3061271;hpb=5c51ba1057b222ab44eca253828d58e107e80df0 diff --git a/source/buffer.cpp b/source/buffer.cpp index a502190f..d8bb2802 100644 --- a/source/buffer.cpp +++ b/source/buffer.cpp @@ -3,6 +3,8 @@ #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); }