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

◆ get_gpu_data_buffer()

std::span< const float > MayaFlux::Nodes::Node::get_gpu_data_buffer ( ) const

Provides access to the GPU data buffer.

Returns
Span of floats representing the GPU data buffer This method returns a span of floats that represents the GPU data buffer associated with this node. The buffer contains data that can be uploaded to the GPU for processing, enabling efficient execution in GPU-accelerated pipelines.

Definition at line 78 of file Node.cpp.

79{
80 return { m_gpu_data_buffer.data(), m_gpu_data_buffer.size() };
81}
std::vector< float > m_gpu_data_buffer
GPU data buffer for context objects.
Definition Node.hpp:393

References m_gpu_data_buffer.