OSSIA
Open Scenario System for Interactive Application
Loading...
Searching...
No Matches
dmx_led_parameter.hpp
1
#pragma once
2
#include <ossia/detail/config.hpp>
3
#if defined(OSSIA_PROTOCOL_ARTNET)
4
#include <ossia/detail/flat_map.hpp>
5
#include <ossia/network/common/device_parameter.hpp>
6
7
#include <cstdint>
8
9
namespace
ossia::net
10
{
11
struct
dmx_buffer;
12
class
OSSIA_EXPORT dmx_led_parameter :
public
device_parameter
13
{
14
public
:
15
dmx_led_parameter(
16
net::node_base& node, dmx_buffer& buffer,
const
unsigned
int
channel,
17
int8_t bytes_per_pixel,
int
num_pixels);
18
~dmx_led_parameter();
19
int8_t m_bytes{};
20
21
private
:
22
void
device_update_value()
override
;
23
24
dmx_buffer& m_buffer;
25
const
uint32_t m_channel{};
26
27
int8_t m_bpp{};
28
int
m_num_pixels{};
29
};
30
31
}
32
#endif
src
ossia
protocols
artnet
dmx_led_parameter.hpp
Generated on Mon Mar 31 2025 23:58:29 for OSSIA by
1.9.8