Graphics

The graphics module provides low-level rendering infrastructure used throughout the application for efficient and reusable GPU-based visualization. It defines a generic renderer abstraction alongside a set of helper classes that encapsulate common rendering patterns and graphics resources.

Renderers focus on orchestrating draw calls and rendering logic, while helper classes provide thin, explicit wrappers around graphics primitives such as buffers, shaders, textures, framebuffers, and mathematical types. Together, these components form a minimal and flexible foundation for building higher-level visualizations without imposing a specific rendering strategy.

Renderer classes

Below are renderer classes often used in ManiVault, for instance in the scatterplot plugin.

Helper classes

The helper classes below are used to expedite the renderer development.