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

◆ initialize()

void MayaFlux::Buffers::RootGraphicsBuffer::initialize ( )

Initializes the root buffer with default processor.

For graphics, this sets up a GraphicsBatchProcessor as the default processor which handles coordinating child buffer processing.

Definition at line 274 of file RootGraphicsBuffer.cpp.

275{
276 auto batch_processor = create_default_processor();
277 if (batch_processor) {
278 set_default_processor(batch_processor);
279 }
280}
std::shared_ptr< BufferProcessor > create_default_processor()
Creates the default graphics batch processor.
void set_default_processor(std::shared_ptr< Buffers::BufferProcessor > processor) override
Set the buffer's default processor.
Definition VKBuffer.cpp:265

References create_default_processor(), and MayaFlux::Buffers::VKBuffer::set_default_processor().

+ Here is the call graph for this function: