OSSIA
Open Scenario System for Interactive Application
Loading...
Searching...
No Matches
texture_port.hpp
1#pragma once
2#include <ossia/detail/config.hpp>
3
4namespace ossia
5{
6
7enum texture_filter
8{
9 NONE,
10 NEAREST,
11 LINEAR
12};
13
14enum texture_address_mode
15{
16 REPEAT,
17 CLAMP_TO_EDGE,
18 MIRROR,
19};
20
21enum texture_format
22{
23 RGBA8,
24 BGRA8,
25 R8,
26 RG8,
27 R16,
28 RG16,
29 RED_OR_ALPHA8,
30
31 RGBA16F,
32 RGBA32F,
33 R16F,
34 R32F,
35
36 RGB10A2,
37
38 D16,
39 D24,
40 D24S8,
41 D32F,
42};
43struct texture_size
44{
45 int32_t width{};
46 int32_t height{};
47
48 bool operator==(const texture_size& other) const noexcept = default;
49 bool operator!=(const texture_size& other) const noexcept = default;
50};
51
52struct render_target_spec
53{
54 std::optional<texture_size> size;
55
56 texture_format format = RGBA8;
57
58 texture_filter mag_filter : 2 = texture_filter::LINEAR;
59 texture_filter min_filter : 2 = texture_filter::LINEAR;
60 texture_filter mipmap_mode : 2 = texture_filter::NONE;
61
62 texture_address_mode address_u : 2 = texture_address_mode::REPEAT;
63 texture_address_mode address_v : 2 = texture_address_mode::REPEAT;
64 texture_address_mode address_w : 2 = texture_address_mode::REPEAT;
65
66 bool operator==(const render_target_spec& other) const noexcept = default;
67 bool operator!=(const render_target_spec& other) const noexcept = default;
68};
69
70}
Definition git_info.h:7