2#include <ossia/detail/config.hpp>
14enum texture_address_mode
48 bool operator==(
const texture_size& other)
const noexcept =
default;
49 bool operator!=(
const texture_size& other)
const noexcept =
default;
52struct render_target_spec
54 std::optional<texture_size> size;
56 texture_format format = RGBA8;
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;
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;
66 bool operator==(
const render_target_spec& other)
const noexcept =
default;
67 bool operator!=(
const render_target_spec& other)
const noexcept =
default;