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

◆ value_element_type()

std::type_index MayaFlux::Kakshya::TextureContainer::value_element_type ( ) const
overridevirtual

Runtime query for the native scalar element type of this container.

Mirrors FrameView::element_type(). Typical return values:

  • typeid(uint8_t) – 8-bit image / video / window
  • typeid(uint16_t) – 16-bit image
  • typeid(float) – HDR image
  • typeid(double) – audio / plot

Use this to branch once before calling get_value_at<T>() when the container's native type is not statically known at the call site.

Implements MayaFlux::Kakshya::NDDataContainer.

Definition at line 633 of file TextureContainer.cpp.

634{
635 size_t element_size = storage_element_size(m_format);
636 if (element_size == 1) {
637 return typeid(uint8_t);
638 }
639 if (element_size == 2) {
640 return typeid(uint16_t);
641 }
642 if (element_size == 4) {
643 return typeid(float);
644 }
645
646 return typeid(uint8_t);
647}
Portal::Graphics::ImageFormat m_format
size_t storage_element_size(ImageFormat format)

References MayaFlux::Kakshya::storage_element_size().

+ Here is the call graph for this function: