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

◆ from_image_array() [1/2]

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

Download each array layer of a Vulkan 2D array image into the corresponding layer slot.

Expects image to have array_layers == get_layer_count(). Downloads each layer via a separate blocking TextureLoom::download_data call. Resizes m_data to match if necessary.

Parameters
imageSource VKImage with array_layers >= get_layer_count().

Definition at line 314 of file TextureContainer.cpp.

315{
316 if (!image || !image->is_initialized()) {
318 "TextureContainer::from_image_array called with uninitialised image");
319 return;
320 }
321
322 const auto n = static_cast<uint32_t>(m_data.size());
323 if (image->get_array_layers() < n) {
325 "TextureContainer::from_image_array image has {} layers, container expects {}",
326 image->get_array_layers(), n);
327 return;
328 }
329
330 const size_t layer_bytes = byte_size();
331 std::vector<uint8_t> combined(layer_bytes * n);
332 TextureLoom::instance().download_data(image, combined.data(), combined.size(), nullptr);
333
334 const size_t element_count = static_cast<size_t>(m_width) * m_height * m_channels;
335 for (uint32_t i = 0; i < n; ++i) {
336 Memory::SeqlockWriteGuard g(m_slot_locks[i]);
337 m_data[i] = make_empty_storage(m_format, element_count);
338 auto [ptr, bytes] = variant_bytes_mut(m_data[i]);
339 if (ptr && bytes == layer_bytes)
340 std::memcpy(ptr, combined.data() + i * layer_bytes, layer_bytes);
341
342 m_normalised_dirty[i].store(true, std::memory_order_release);
343 }
344
346}
#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.