|
MayaFlux 0.4.0
Digital-First Multimedia Processing Framework
|
#include "Forma.hpp"#include "MayaFlux/Buffers/BufferManager.hpp"#include "MayaFlux/Core/Windowing/WindowManager.hpp"#include "MayaFlux/Nodes/NodeGraphManager.hpp"#include "MayaFlux/Transitive/Memory/Persist.hpp"#include "MayaFlux/Vruta/EventManager.hpp"#include "MayaFlux/Vruta/Scheduler.hpp"#include "MayaFlux/Nodes/Network/NodeNetwork.hpp"#include "Inspect/Inspector.hpp"#include "MayaFlux/Kakshya/Source/PlotContainer.hpp"#include "MayaFlux/Journal/Archivist.hpp"
Include dependency graph for Forma.cpp:Go to the source code of this file.
Namespaces | |
| namespace | MayaFlux |
| Main namespace for the Maya Flux audio engine. | |
| namespace | MayaFlux::Portal |
| namespace | MayaFlux::Portal::Forma |
| namespace | MayaFlux::Portal::Forma::internal |
Functions | |
| Bridge & | MayaFlux::Portal::Forma::bridge () |
| Return the application-level Bridge instance. | |
| std::shared_ptr< Buffers::FormaBuffer > | MayaFlux::Portal::Forma::create_buffer (std::shared_ptr< Core::Window > window, Graphics::PrimitiveTopology topology, const std::string &texture_binding={}) |
| Construct and register a FormaBuffer without creating a Mapped<T>. | |
| std::shared_ptr< Buffers::FormaBuffer > | MayaFlux::Portal::Forma::create_buffer (std::shared_ptr< Core::Window > window, Graphics::PrimitiveTopology topology, std::vector< std::pair< std::string, std::shared_ptr< Core::VKImage > > > additional_textures) |
| Construct and register a FormaBuffer with additional texture bindings. | |
| std::shared_ptr< Buffers::FormaBuffer > | MayaFlux::Portal::Forma::internal::create_buffer_impl (std::shared_ptr< Core::Window > window, size_t capacity, Graphics::PrimitiveTopology topology, const std::string &texture_binding={}, std::vector< std::pair< std::string, std::shared_ptr< Core::VKImage > > > additional_textures={}) |
| Core buffer construction — capacity-explicit path for internal use. | |
| std::pair< std::shared_ptr< Layer >, std::shared_ptr< Context > > | MayaFlux::Portal::Forma::create_layer (const std::shared_ptr< Core::Window > &window, std::string name) |
Construct a Layer and a Context wired to window. | |
| Surface | MayaFlux::Portal::Forma::create_surface (std::shared_ptr< Core::Window > window, std::string name) |
| Construct a Surface, creating Layer and Context internally. | |
| bool | MayaFlux::Portal::Forma::initialize (std::shared_ptr< Nodes::NodeGraphManager > node_graph_manager, std::shared_ptr< Buffers::BufferManager > buffer_manager, std::shared_ptr< Vruta::TaskScheduler > scheduler, std::shared_ptr< Vruta::EventManager > event_manager, std::shared_ptr< Core::WindowManager > window_manager) |
| Store engine-level references for use by all subsequent Forma calls. | |
| void | MayaFlux::Portal::Forma::inspect (const std::shared_ptr< Buffers::Buffer > &buf) |
| Open a dedicated window inspecting a single Buffer and its processing chain. | |
| void | MayaFlux::Portal::Forma::inspect (const std::shared_ptr< Nodes::Network::NodeNetwork > &net) |
| Open a dedicated window inspecting a NodeNetwork. | |
| void | MayaFlux::Portal::Forma::inspect (const std::shared_ptr< Nodes::Node > &node) |
| Open a dedicated window inspecting a single Node and its modulator tree. | |
| void | MayaFlux::Portal::Forma::inspect (const std::shared_ptr< Vruta::Event > &ev, std::string_view name={}) |
| Open a dedicated window inspecting a single Event. | |
| void | MayaFlux::Portal::Forma::inspect_buffers () |
| Open or show the BufferManager inspection window. | |
| void | MayaFlux::Portal::Forma::inspect_events () |
| Open or show the EventManager inspection window. | |
| void | MayaFlux::Portal::Forma::inspect_node_graph () |
| Open or show the NodeGraphManager inspection window. | |
| void | MayaFlux::Portal::Forma::inspect_scheduler () |
| Open or show the TaskScheduler inspection window. | |
| Inspector & | MayaFlux::Portal::Forma::inspector () |
| Access the Forma introspection subsystem. | |
| bool | MayaFlux::Portal::Forma::is_initialized () |
| Whether initialize() has been called successfully. | |
| std::pair< Mapped< std::shared_ptr< Kakshya::PlotContainer > >, Surface > | MayaFlux::Portal::Forma::plot (std::string title, uint32_t width, uint32_t height, std::shared_ptr< Kakshya::PlotContainer > container, Plot::SeriesSpec spec) |
| Create a live plot in a new window. | |
| void | MayaFlux::Portal::Forma::shutdown () |
| Release stored references. | |