MayaFlux 0.2.0
Digital-First Multimedia Processing Framework
Loading...
Searching...
No Matches

◆ processing_function()

void MayaFlux::Buffers::PresentProcessor::processing_function ( const std::shared_ptr< Buffer > &  buffer)
overridevirtual

Executes the render callback.

Parameters
bufferBuffer to process (must be RootGraphicsBuffer)

Validates buffer type and invokes the render callback. This is the core rendering coordination point - all child buffers have been processed by the time this executes.

Implements MayaFlux::Buffers::BufferProcessor.

Definition at line 118 of file RootGraphicsBuffer.cpp.

119{
120 auto root_graphics_buffer = std::dynamic_pointer_cast<RootGraphicsBuffer>(buffer);
121 if (!root_graphics_buffer) {
123 "RenderProcessor received non-RootGraphicsBuffer");
124 return;
125 }
126
127 if (m_root_buffer && root_graphics_buffer != m_root_buffer) {
129 "RenderProcessor processing buffer that doesn't match attached root");
130 return;
131 }
132
133 if (m_callback) {
134 try {
135 m_callback(root_graphics_buffer);
136 } catch (const std::exception& e) {
140 std::source_location::current(),
141 "RenderProcessor callback threw exception: {}",
142 e.what());
143 }
144 } else {
145 fallback_renderer(root_graphics_buffer);
146 }
147}
#define MF_RT_ERROR(comp, ctx,...)
RenderCallback m_callback
User-provided render callback.
void fallback_renderer(const std::shared_ptr< RootGraphicsBuffer > &root)
std::shared_ptr< RootGraphicsBuffer > m_root_buffer
Reference to root buffer (for validation and callbacks)
@ BufferProcessing
Buffer processing (Buffers::BufferManager, processing chains)
void error_rethrow(Component component, Context context, std::source_location location=std::source_location::current(), std::string_view additional_context="")
Catch and log an exception, then rethrow it.
@ Buffers
Buffers, Managers, processors and processing chains.

References MayaFlux::Journal::BufferProcessing, MayaFlux::Journal::Buffers, fallback_renderer(), m_callback, m_root_buffer, and MF_RT_ERROR.

+ Here is the call graph for this function: