-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgraphics_buffer.hpp
54 lines (47 loc) · 1.14 KB
/
graphics_buffer.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#pragma once
class graphics_buffer
{
public:
enum class type
{
vertex,
index,
shader_storage,
};
enum class usage_type {
stream_draw,
stream_read,
stream_copy,
static_draw,
static_read,
static_copy,
dynamic_draw,
dynamic_read,
dynamic_copy,
};
public:
graphics_buffer(type type);
graphics_buffer(graphics_buffer&& o);
graphics_buffer(const graphics_buffer& o) = delete;
graphics_buffer& operator=(graphics_buffer&& o);
graphics_buffer& operator=(const graphics_buffer& o) = delete;
~graphics_buffer();
void set_data(void* data_buffer);
void get_data(void* data_buffer) const;
void set_element_count(int element_count);
int get_element_count() const;
void set_element_stride(int element_stride);
int get_element_stride() const;
void set_usage_type(usage_type usage_type);
usage_type get_usage_type() const;
unsigned get_handle() const;
void release();
private:
type _type { type::vertex };
usage_type _usage_type {
usage_type::static_draw
};
unsigned _handle { 0 };
int _element_count { 0 };
int _element_stride { 0 };
};