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

◆ from_image_array() [2/2]

void MayaFlux::Kakshya::TextureContainer::from_image_array ( const std::shared_ptr< Core::VKImage > &  image,
const std::shared_ptr< Buffers::VKBuffer > &  staging 
)

Download all array layers from a VKImage, reusing a caller-supplied persistent staging buffer.

Identical to from_image_array() but passes staging through to TextureLoom::download_data. The staging buffer must be at least byte_size() * get_layer_count() bytes. Use Buffers::create_image_staging_buffer(byte_size() * get_layer_count()) to allocate it once before the render loop.

Parameters
imageSource VKImage with array_layers >= get_layer_count().
stagingHost-visible staging VKBuffer sized to at least byte_size() * get_layer_count().

Definition at line 348 of file TextureContainer.cpp.

351{
352 if (!image || !image->is_initialized()) {
354 "TextureContainer::from_image_array(staging) called with uninitialised image");
355 return;
356 }
357
358 const auto n = static_cast<uint32_t>(m_data.size());
359 if (image->get_array_layers() < n) {
361 "TextureContainer::from_image_array(staging) image has {} layers, container expects {}",
362 image->get_array_layers(), n);
363 return;
364 }
365
366 const size_t layer_bytes = byte_size();
367 std::vector<uint8_t> combined(layer_bytes * n);
368 TextureLoom::instance().download_data(image, combined.data(), combined.size(), staging);
369
370 const size_t element_count = static_cast<size_t>(m_width) * m_height * m_channels;
371 for (uint32_t i = 0; i < n; ++i) {
372 Memory::SeqlockWriteGuard g(m_slot_locks[i]);
373 m_data[i] = make_empty_storage(m_format, element_count);
374 auto [ptr, bytes] = variant_bytes_mut(m_data[i]);
375 if (ptr && bytes == layer_bytes)
376 std::memcpy(ptr, combined.data() + i * layer_bytes, layer_bytes);
377
378 m_normalised_dirty[i].store(true, std::memory_order_release);
379 }
380
382}
#define MF_ERROR(comp, ctx,...)
IO::ImageData image
Definition Decoder.cpp:64
const uint8_t * ptr
std::vector< std::atomic< bool > > m_normalised_dirty
void update_processing_state(ProcessingState state) override
Update the processing state of the container.
Portal::Graphics::ImageFormat m_format
size_t byte_size() const
Total byte count of the pixel buffer.
void download_data(const std::shared_ptr< Core::VKImage > &image, void *data, size_t size, const std::shared_ptr< Buffers::VKBuffer > &staging, bool deferred=false)
Download pixel data from a VKImage, reusing a caller-supplied persistent staging buffer.
@ ContainerProcessing
Container operations (Kakshya - file/stream/region processing)
@ Kakshya
Containers[Signalsource, Stream, File], Regions, DataProcessors.
@ READY
Container has data loaded and is ready for processing.

References image, MF_ERROR, and ptr.