]> git.tdb.fi Git - libs/gl.git/blob - source/buffer.cpp
51f4873f76274d2f37305ba8bbc3045eb00406a6
[libs/gl.git] / source / buffer.cpp
1 /* $Id$
2
3 This file is part of libmspgl
4 Copyright © 2007  Mikko Rasa, Mikkosoft Productions
5 Distributed under the LGPL
6 */
7
8 #include "arb_vertex_buffer_object.h"
9 #include "extension.h"
10 #include "buffer.h"
11
12 namespace Msp {
13 namespace GL {
14
15 Buffer::Buffer(BufferType t):
16         type(t),
17         usage(STATIC_DRAW)
18 {
19         static RequireExtension _req_vbo("GL_ARB_vertex_buffer_object");
20         if(type==PIXEL_PACK_BUFFER || type==PIXEL_UNPACK_BUFFER)
21                 static RequireExtension _req_pbo("GL_ARB_pixel_buffer_object");
22
23         glGenBuffersARB(1, &id);
24 }
25
26 Buffer::~Buffer()
27 {
28         glDeleteBuffersARB(1, &id);
29 }
30
31 void Buffer::set_usage(BufferUsage u)
32 {
33         usage = u;
34 }
35
36 void Buffer::data(unsigned size, const void *d)
37 {
38         const Buffer *old = current(type);
39         bind();
40         glBufferDataARB(type, size, d, usage);
41         restore(old, type);
42 }
43
44 void Buffer::sub_data(unsigned offset, unsigned size, const void *d)
45 {
46         const Buffer *old = current(type);
47         bind();
48         glBufferSubDataARB(type, offset, size, d);
49         restore(old, type);
50 }
51
52 void Buffer::bind_to(BufferType t) const
53 {
54         const Buffer *&ptr = binding(t);
55         if(ptr!=this)
56         {
57                 glBindBufferARB(t, id);
58                 ptr = this;
59         }
60 }
61
62 void Buffer::unbind_from(BufferType type)
63 {
64         const Buffer *&ptr = binding(type);
65         if(ptr)
66         {
67                 glBindBufferARB(type, 0);
68                 ptr = 0;
69         }
70 }
71
72 const Buffer *&Buffer::binding(BufferType type)
73 {
74         switch(type)
75         {
76         case ARRAY_BUFFER:         return bound[0];
77         case ELEMENT_ARRAY_BUFFER: return bound[1];
78         case PIXEL_PACK_BUFFER:    return bound[2];
79         case PIXEL_UNPACK_BUFFER:  return bound[3];
80         default: throw InvalidParameterValue("Invalid buffer type");
81         }
82 }
83
84 void Buffer::restore(const Buffer *buf, BufferType type)
85 {
86         if(buf!=current(type))
87         {
88                 if(buf)
89                         buf->bind_to(type);
90                 else
91                         unbind_from(type);
92         }
93 }
94
95 const Buffer *Buffer::bound[4] = { 0, 0, 0, 0 };
96
97 } // namespace GL
98 } // namespace Msp