]> git.sesse.net Git - casparcg/blob - accelerator/ogl/util/device.h
set svn:eol-style native on .h and .cpp files
[casparcg] / accelerator / ogl / util / device.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 <core/frame/frame.h>
25
26 #include <common/memory.h>
27 #include <common/executor.h>
28
29 namespace caspar { namespace accelerator { namespace ogl {
30
31 class texture;
32
33 class device sealed : public std::enable_shared_from_this<device>
34 {       
35         device(const device&);
36         device& operator=(const device&);
37
38         executor executor_;
39 public:         
40
41         // Static Members
42
43         // Constructors
44
45         device();
46         ~device();
47
48         // Methods
49                         
50         spl::shared_ptr<texture> create_texture(int width, int height, int stride);
51         array<std::uint8_t>              create_array(int size);
52                 
53         // NOTE: Since the returned texture is cached it SHOULD NOT be modified.
54         boost::unique_future<spl::shared_ptr<texture>>  copy_async(const array<const std::uint8_t>& source, int width, int height, int stride);
55
56         boost::unique_future<spl::shared_ptr<texture>>  copy_async(const array<std::uint8_t>& source, int width, int height, int stride);
57         boost::unique_future<array<const std::uint8_t>> copy_async(const spl::shared_ptr<texture>& source);
58                         
59         template<typename Func>
60         auto begin_invoke(Func&& func, task_priority priority = task_priority::normal_priority) -> boost::unique_future<decltype(func())> // noexcept
61         {                       
62                 return executor_.begin_invoke(std::forward<Func>(func), priority);
63         }
64         
65         template<typename Func>
66         auto invoke(Func&& func, task_priority priority = task_priority::normal_priority) -> decltype(func())
67         {
68                 return executor_.invoke(std::forward<Func>(func), priority);
69         }
70
71         // Properties
72         
73         std::wstring version() const;
74
75 private:
76         struct impl;
77         spl::shared_ptr<impl> impl_;
78 };
79
80 }}}