X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fcore%2Fbuffer.cpp;h=dcb83a7a5960f1cb48436cb9cff5063327c4d5f2;hb=ada4b7614137221b64a00f31fde1498064e9fb19;hp=ecf7b49a15e35d29493c83f1a6ea2f8013065483;hpb=9b3bce7ae76ff8c0c81315d2505ea96bf422a318;p=libs%2Fgl.git diff --git a/source/core/buffer.cpp b/source/core/buffer.cpp index ecf7b49a..dcb83a7a 100644 --- a/source/core/buffer.cpp +++ b/source/core/buffer.cpp @@ -2,22 +2,22 @@ #include #include #include +#include #include +#include #include #include "buffer.h" -#include "deviceinfo.h" #include "error.h" -#include "misc.h" -#include "vertexsetup.h" using namespace std; namespace Msp { namespace GL { +Buffer *Buffer::scratch_binding = 0; + Buffer::Buffer(): - size(0), - allocated(false) + size(0) { static Require _req(ARB_vertex_buffer_object); @@ -29,6 +29,8 @@ Buffer::Buffer(): Buffer::~Buffer() { + if(this==scratch_binding) + unbind_scratch(); glDeleteBuffers(1, &id); } @@ -44,14 +46,6 @@ void Buffer::storage(unsigned sz) throw invalid_argument("Buffer::storage"); size = sz; -} - -void Buffer::allocate() -{ - if(size==0) - throw invalid_operation("Buffer::allocate"); - if(allocated) - return; if(ARB_buffer_storage) { @@ -60,49 +54,22 @@ void Buffer::allocate() glNamedBufferStorage(id, size, 0, flags); else { - glBindBuffer(GL_ARRAY_BUFFER, id); + bind_scratch(); glBufferStorage(GL_ARRAY_BUFFER, size, 0, flags); - glBindBuffer(GL_ARRAY_BUFFER, 0); } - - allocated = true; } - else - data(0); -} - -void Buffer::set_usage(BufferUsage) -{ -} - -void Buffer::data(const void *d) -{ - if(size==0) - throw invalid_operation("Buffer::data"); - - if(ARB_buffer_storage) - return sub_data(0, size, d); - - if(ARB_direct_state_access) - glNamedBufferData(id, size, d, STATIC_DRAW); + else if(ARB_direct_state_access) + glNamedBufferData(id, size, 0, GL_STATIC_DRAW); else { - glBindBuffer(GL_ARRAY_BUFFER, id); - glBufferData(GL_ARRAY_BUFFER, size, d, STATIC_DRAW); - glBindBuffer(GL_ARRAY_BUFFER, 0); + bind_scratch(); + glBufferData(GL_ARRAY_BUFFER, size, 0, GL_STATIC_DRAW); } - - allocated = true; } -void Buffer::data(unsigned sz, const void *d) +void Buffer::data(const void *d) { - if(size==0) - storage(sz); - else if(sz!=size) - throw incompatible_data("Buffer::data"); - - data(d); + return sub_data(0, size, d); } void Buffer::sub_data(unsigned off, unsigned sz, const void *d) @@ -110,15 +77,12 @@ void Buffer::sub_data(unsigned off, unsigned sz, const void *d) if(size==0) throw invalid_operation("Buffer::sub_data"); - allocate(); - if(ARB_direct_state_access) glNamedBufferSubData(id, off, sz, d); else { - glBindBuffer(GL_ARRAY_BUFFER, id); + bind_scratch(); glBufferSubData(GL_ARRAY_BUFFER, off, sz, d); - glBindBuffer(GL_ARRAY_BUFFER, 0); } } @@ -132,14 +96,12 @@ void *Buffer::map() { static Require _req(ARB_map_buffer_range); - allocate(); if(ARB_direct_state_access) return glMapNamedBufferRange(id, 0, size, GL_MAP_READ_BIT|GL_MAP_WRITE_BIT); else { - glBindBuffer(GL_ARRAY_BUFFER, id); + bind_scratch(); void *result = glMapBufferRange(GL_ARRAY_BUFFER, 0, size, GL_MAP_READ_BIT|GL_MAP_WRITE_BIT); - glBindBuffer(GL_ARRAY_BUFFER, 0); return result; } } @@ -151,9 +113,8 @@ bool Buffer::unmap() return glUnmapNamedBuffer(id); else if(OES_mapbuffer) { - glBindBuffer(GL_ARRAY_BUFFER, id); + bind_scratch(); bool result = glUnmapBuffer(GL_ARRAY_BUFFER); - glBindBuffer(GL_ARRAY_BUFFER, 0); return result; } else @@ -170,5 +131,23 @@ void Buffer::set_debug_name(const string &name) #endif } +void Buffer::bind_scratch() +{ + if(scratch_binding!=this) + { + glBindBuffer(GL_ARRAY_BUFFER, id); + scratch_binding = this; + } +} + +void Buffer::unbind_scratch() +{ + if(scratch_binding) + { + glBindBuffer(GL_ARRAY_BUFFER, 0); + scratch_binding = 0; + } +} + } // namespace GL } // namespace Msp