]> git.tdb.fi Git - libs/gl.git/blob - source/core/vertexsetup.h
Rewrite state management
[libs/gl.git] / source / core / vertexsetup.h
1 #ifndef MSP_GL_VERTEXSETUP_H_
2 #define MSP_GL_VERTEXSETUP_H_
3
4 #include "bindable.h"
5 #include "vertexformat.h"
6
7 namespace Msp {
8 namespace GL {
9
10 class Buffer;
11 class VertexArray;
12
13 /**
14 Combines a VertexArray with an index buffer.  This wraps OpenGL's vertex array
15 objects.  Intended for internal use.
16 */
17 class VertexSetup
18 {
19 private:
20         enum ComponentMask
21         {
22                 VERTEX_ARRAY = 1,
23                 INSTANCE_ARRAY = 2,
24                 INDEX_BUFFER = 4
25         };
26
27         unsigned id;
28         mutable unsigned dirty;
29         const VertexArray *vertex_array;
30         VertexFormat vertex_format;
31         const VertexArray *inst_array;
32         VertexFormat inst_format;
33         const Buffer *index_buffer;
34
35 public:
36         VertexSetup();
37         ~VertexSetup();
38
39         void set_format(const VertexFormat &);
40         void set_format_instanced(const VertexFormat &, const VertexFormat &);
41
42         void set_vertex_array(const VertexArray &);
43         void set_instance_array(const VertexArray &);
44         void set_index_buffer(const Buffer &);
45         const VertexArray *get_vertex_array() const { return vertex_array; }
46         const VertexArray *get_instance_array() const { return inst_array; }
47         const Buffer *get_index_buffer() const { return index_buffer; }
48
49 private:
50         static bool verify_format(const VertexFormat &);
51         void update() const;
52         void update_vertex_array(const VertexArray &, unsigned, unsigned, bool) const;
53
54 public:
55         void refresh() const { if(dirty) update(); }
56
57         unsigned get_id() const { return id; }
58
59         void unload();
60
61         void set_debug_name(const std::string &);
62 };
63
64 } // namespace GL
65 } // namespace Msp
66
67 #endif