]> git.sesse.net Git - casparcg/blob - accelerator/ogl/util/buffer.h
set svn:eol-style native on .h and .cpp files
[casparcg] / accelerator / ogl / util / buffer.h
1 /*
2 * Copyright (c) 2011 Sveriges Television AB <info@casparcg.com>
3 *
4 * This file is part of CasparCG (www.casparcg.com).
5 *
6 * CasparCG is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation, either version 3 of the License, or
9 * (at your option) any later version.
10 *
11 * CasparCG is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with CasparCG. If not, see <http://www.gnu.org/licenses/>.
18 *
19 * Author: Robert Nagy, ronag89@gmail.com
20 */
21
22 #pragma once
23
24 #include <common/memory.h>
25 #include <common/enum_class.h>
26
27 #include <cstdint>
28
29 namespace caspar { namespace accelerator { namespace ogl {
30                         
31 class buffer sealed
32 {
33         buffer(const buffer&);
34         buffer& operator=(const buffer&);
35 public:
36
37         // Static Members
38
39         struct usage_def
40         {
41                 enum type
42                 {
43                         write_only,
44                         read_only
45                 };
46         };
47         typedef enum_class<usage_def> usage;
48         
49         // Constructors
50
51         buffer(std::size_t size, usage usage);
52         buffer(buffer&& other);
53         ~buffer();
54
55         // Methods
56
57         buffer& operator=(buffer&& other);
58         
59         void map();
60         void unmap();
61
62         void bind() const;
63         void unbind() const;
64
65         // Properties
66
67         uint8_t* data();
68         std::size_t size() const;       
69
70         int id() const;
71
72 private:
73         struct impl;
74         spl::unique_ptr<impl> impl_;
75 };
76
77 }}}