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

◆ clone_to() [2/2]

std::shared_ptr< Buffers::VKBuffer > MayaFlux::Buffers::VKBuffer::clone_to ( Usage  usage)

Create a clone of this buffer with the same data and properties.

Parameters
usageUsage enum for the cloned buffer
Returns
Shared pointer to the cloned VKBuffer

The cloned buffer will have the same size, modality, dimensions, processing chain and default processor as the original. Changes to one buffer after cloning do not affect the other.

Definition at line 375 of file VKBuffer.cpp.

376{
377 auto buffer = std::make_shared<VKBuffer>(m_size_bytes, usage, m_modality);
378
379 if (auto layout = get_vertex_layout(); layout.has_value()) {
380 buffer->set_vertex_layout(layout.value());
381 }
382
383 buffer->set_processing_chain(get_processing_chain());
384 buffer->set_default_processor(get_default_processor());
385
386 if (is_host_visible()) {
387 if (buffer->is_host_visible()) {
388 auto src_ptr = static_cast<uint8_t*>(m_resources.mapped_ptr);
389 buffer->set_data({ std::vector<uint8_t>(src_ptr, src_ptr + m_size_bytes) });
390 } else {
392 std::dynamic_pointer_cast<VKBuffer>(shared_from_this()),
393 buffer,
394 nullptr);
395 }
396 } else {
397 if (buffer->is_host_visible()) {
399 buffer,
400 std::dynamic_pointer_cast<VKBuffer>(shared_from_this()),
401 get_data()[0]);
402 } else {
404 "Cloning device-local VKBuffer to another device-local VKBuffer requires external data transfer");
405 }
406 }
407
408 return buffer;
409}
#define MF_WARN(comp, ctx,...)
std::vector< Kakshya::DataVariant > get_data()
Read buffer contents as Kakshya DataVariant.
Definition VKBuffer.cpp:96
std::shared_ptr< Buffers::BufferProcessor > get_default_processor() const override
Get the currently attached default processor.
Definition VKBuffer.cpp:276
std::shared_ptr< Buffers::BufferProcessingChain > get_processing_chain() override
Access the buffer's processing chain.
Definition VKBuffer.cpp:281
std::optional< Kakshya::VertexLayout > get_vertex_layout() const
Get vertex layout if set.
Definition VKBuffer.hpp:392
VKBufferResources m_resources
Definition VKBuffer.hpp:427
Kakshya::DataModality m_modality
Definition VKBuffer.hpp:434
bool is_host_visible() const
Whether this VKBuffer should be host-visible.
Definition VKBuffer.hpp:278
void upload_device_local(const std::shared_ptr< VKBuffer > &target, const std::shared_ptr< VKBuffer > &staging_buffer, const Kakshya::DataVariant &data)
Upload data to a device-local buffer using a staging buffer.
void download_device_local(const std::shared_ptr< VKBuffer > &source, const std::shared_ptr< VKBuffer > &target, const std::shared_ptr< VKBuffer > &staging_buffer)
Download data from a device-local buffer using a staging buffer.
@ BufferManagement
Buffer Management (Buffers::BufferManager, creating buffers)
@ Buffers
Buffers, Managers, processors and processing chains.

References MayaFlux::Journal::BufferManagement, MayaFlux::Journal::Buffers, MayaFlux::Buffers::download_device_local(), get_data(), get_default_processor(), get_processing_chain(), get_vertex_layout(), is_host_visible(), m_modality, m_resources, m_size_bytes, MayaFlux::Buffers::VKBufferResources::mapped_ptr, MF_WARN, and MayaFlux::Buffers::upload_device_local().

+ Here is the call graph for this function: