Lumiera
0.pre.03
»edit your freedom«
|
#include "steam/fixture/segment.hpp"
For the purpose of building and rendering, the fixture (for each timeline) is partitioned such that each segment is structurally constant. For each segment there is a RenderGraph (unit of the render engine) which is able to render all ExitNode(s) for this segment.
Definition at line 68 of file segment.hpp.
Public Member Functions | |
Segment (TimeSpan span=TimeSpan::ALL) | |
create empty Segment | |
Segment (TimeSpan covered, NodeGraphAttachment &&modelLink) | |
create a new Segment to cover the given TimeSpan and to offer the rendering capabilities exposed by modelLink | |
Segment (Segment const &original, TimeSpan changed) | |
copy-and-remould an existing Segment to sit at another time span More... | |
Time | after () const |
bool | empty () const |
engine::JobTicket & | jobTicket (size_t portNr) const |
Access the JobTicket for this segment and the given portNr. More... | |
Time | start () const |
Public Attributes | |
NodeGraphAttachment | exitNode |
connection to the render nodes network | |
Protected Attributes | |
std::deque< ExplicitPlacement > | elements |
relevant MObjects comprising this segment. More... | |
PortTable | portTable_ |
TimeSpan | span_ |
begin of this timeline segment. More... | |
TicketAlloc | ticketAlloc_ |
manage JobTicket: render plan / blueprint to use for this segment | |
Private Types | |
using | JobTicket = engine::JobTicket |
using | PortTable = std::deque< std::reference_wrapper< JobTicket > > |
using | TicketAlloc = lib::AllocatorHandle< JobTicket > |
Private Member Functions | |
void | generateTickets_onDemand (size_t portNr) |
copy-and-remould an existing Segment to sit at another time span
Definition at line 110 of file segment.hpp.
References Segment::exitNode.
|
inline |
Access the JobTicket for this segment and the given portNr.
Definition at line 131 of file segment.hpp.
|
protected |
begin of this timeline segment.
Definition at line 77 of file segment.hpp.
|
protected |
relevant MObjects comprising this segment.
Definition at line 85 of file segment.hpp.