]> git.tdb.fi Git - libs/gl.git/blob - source/core/buffer.h
66eb8d41fc44e76c91eddc4865b2a2f1dcb43c9d
[libs/gl.git] / source / core / buffer.h
1 #ifndef MSP_GL_BUFFER_H_
2 #define MSP_GL_BUFFER_H_
3
4 #include <stdexcept>
5 #include <string>
6 #include "buffer_backend.h"
7
8 namespace Msp {
9 namespace GL {
10
11 class buffer_too_small: public std::logic_error
12 {
13 public:
14         buffer_too_small(const std::string &w): std::logic_error(w) { }
15         virtual ~buffer_too_small() throw() { }
16 };
17
18 enum BufferUsage
19 {
20         STATIC,
21         STREAMING
22 };
23
24 /**
25 Stores data in GPU memory.
26
27 Memory must be allocated for the buffer by calling storage().  Contents can
28 then be modified either synchronously with the data() and sub_data() functions,
29 or asynchronously by memory-mapping the buffer.
30
31 Buffers can have a static or streaming usage pattern.  Streaming buffers can be
32 memory mapped for less update overhead, but memory space is more limited.  If
33 the buffer is updated only rarely, static is recommended.
34
35 Applications normally don't need to deal with Buffers directly.  They're
36 managed by other classes such as Mesh and ProgramData.
37 */
38 class Buffer: public BufferBackend
39 {
40         friend BufferBackend;
41
42 public:
43         /**
44         An RAII handle for asynchronously writing data into a buffer.
45         */
46         class AsyncTransfer: public NonCopyable
47         {
48                 friend BufferBackend;
49                 friend class Buffer;
50
51         private:
52                 Buffer &buffer;
53                 std::size_t offset = 0;
54                 std::size_t size = 0;
55                 void *dest_addr = 0;
56
57                 AsyncTransfer(Buffer &, std::size_t, std::size_t);
58         public:
59                 AsyncTransfer(AsyncTransfer &&);
60                 ~AsyncTransfer();
61
62         private:
63                 void allocate();
64                 void finalize();
65
66         public:
67                 /** Returns an address for writing the data.  It should not be used
68                 beyond the lifetime of the object. */
69                 void *get_address() { return dest_addr; }
70         };
71
72 private:
73         std::size_t size = 0;
74         BufferUsage usage = STATIC;
75         bool mapped = false;
76
77 public:
78         /** Sets storage size and usage pattern and allocates memory for the buffer.
79         Size and usage cannot be changed once set. */
80         void storage(std::size_t, BufferUsage);
81
82         /** Replaces contents of the entire buffer.  Allocated storage must exist.
83         The data must have size matching the defined storage. */
84         void data(const void *);
85
86         /** Replaces a range of bytes in the buffer.  Allocated storage must exist.
87         The range must be fully inside the buffer. */
88         void sub_data(std::size_t, std::size_t, const void *);
89
90         /** Creates an asynchronous transfer for writing data to a range of bytes in
91         the buffer.  While the transfer is pending, the state of the buffer region
92         is indeterminate. */
93         AsyncTransfer sub_data_async(std::size_t, std::size_t);
94
95 private:
96         void check_sub_data(std::size_t, std::size_t, const char *);
97
98 public:
99         std::size_t get_size() const { return size; }
100         using BufferBackend::get_multiplicity;
101         std::size_t get_total_size() const { return size*get_multiplicity(); }
102         BufferUsage get_usage() const { return usage; }
103
104         void require_size(std::size_t) const;
105
106         void *map();
107         bool unmap();
108
109         using BufferBackend::set_debug_name;
110 };
111
112 } // namespace GL
113 } // namespace Msp
114
115 #endif