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 156 of file TextureContainer.cpp.

157{
158 if (!image || !image->is_initialized()) {
160 "TextureContainer::from_image_array called with uninitialised image");
161 return;
162 }
163
164 const auto n = static_cast<uint32_t>(m_data.size());
165 if (image->get_array_layers() < n) {
167 "TextureContainer::from_image_array image has {} layers, container expects {}",
168 image->get_array_layers(), n);
169 return;
170 }
171
172 const size_t layer_bytes = byte_size();
173 std::vector<uint8_t> combined(layer_bytes * n);
174 TextureLoom::instance().download_data(image, combined.data(), combined.size(), nullptr);
175
176 const size_t element_count = static_cast<size_t>(m_width) * m_height * m_channels;
177 for (uint32_t i = 0; i < n; ++i) {
178 Memory::SeqlockWriteGuard g(m_slot_locks[i]);
179 m_data[i] = make_empty_storage(m_format, element_count);
180 auto [ptr, bytes] = variant_bytes_mutable(m_data[i]);
181 if (ptr && bytes == layer_bytes)
182 std::memcpy(ptr, combined.data() + i * layer_bytes, layer_bytes);
183
184 m_normalised_dirty[i].store(true, std::memory_order_release);
185 }
186
188}
#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.
DataVariant make_empty_storage(ImageFormat format, size_t element_count)
std::pair< uint8_t *, size_t > variant_bytes_mutable(DataVariant &v)
Get a mutable pointer to the raw bytes of a DataVariant and its size.

References image, MayaFlux::Kakshya::make_empty_storage(), MF_ERROR, ptr, and MayaFlux::Kakshya::variant_bytes_mutable().

+ Here is the call graph for this function: