usage(STATIC_DRAW),
size(0)
{
- static RequireExtension _req_vbo("GL_ARB_vertex_buffer_object");
- if(type==PIXEL_PACK_BUFFER || type==PIXEL_UNPACK_BUFFER)
- static RequireExtension _req_pbo("GL_ARB_pixel_buffer_object");
+ require_buffer_type(type);
glGenBuffersARB(1, &id);
}
glDeleteBuffersARB(1, &id);
}
+void Buffer::require_buffer_type(BufferType type)
+{
+ static RequireExtension _req_vbo("GL_ARB_vertex_buffer_object");
+ if(type==PIXEL_PACK_BUFFER || type==PIXEL_UNPACK_BUFFER)
+ static RequireExtension _req_pbo("GL_ARB_pixel_buffer_object");
+}
+
void Buffer::set_usage(BufferUsage u)
{
usage = u;
void Buffer::bind_to(BufferType t) const
{
- const Buffer *&ptr = binding(t);
- if(ptr!=this)
- {
+ if(t!=type)
+ require_buffer_type(t);
+ if(set_current(t, this))
glBindBufferARB(t, id);
- ptr = this;
- }
}
void Buffer::unbind_from(BufferType type)
{
- const Buffer *&ptr = binding(type);
- if(ptr)
- {
+ if(set_current(type, 0))
glBindBufferARB(type, 0);
- ptr = 0;
- }
}
const Buffer *&Buffer::binding(BufferType type)
}
}
+bool Buffer::set_current(BufferType type, const Buffer *buf)
+{
+ const Buffer *&ptr = binding(type);
+ if(ptr==buf)
+ return false;
+
+ ptr = buf;
+ return true;
+}
+
void Buffer::restore(const Buffer *buf, BufferType type)
{
if(buf!=current(type))
~Buffer();
private:
- const Buffer *maybe_bind() const;
+ static void require_buffer_type(BufferType);
public:
/** Sets the usage hint of the buffer. It will take effect the next time
static void unbind_from(BufferType);
private:
static const Buffer *&binding(BufferType);
+ static bool set_current(BufferType, const Buffer *);
static void restore(const Buffer *, BufferType);
};