|
|
Donner 0.8.0-pre
Embeddable browser-grade SVG2 engine
|
#include <algorithm>#include <atomic>#include <cassert>#include <chrono>#include <condition_variable>#include <cstddef>#include <cstdint>#include <deque>#include <memory>#include <mutex>#include <optional>#include <thread>#include <utility>#include <vector>#include "donner/base/EcsRegistry.h"Classes | |
| class | donner::svg::DocumentAccessLock |
| Lightweight reader/writer gate for document access. More... | |
| struct | donner::svg::DetachedNodeDiagnostics |
| Summary of detached-node collection state. More... | |
| struct | donner::svg::DocumentAccessDiagnostics |
| Summary of document access and lock state. More... | |
| struct | donner::svg::DocumentMutationRecord |
| One committed document mutation revision. More... | |
| struct | donner::svg::DocumentMutationLogSnapshot |
| Snapshot of mutation-log records after a caller-owned sequence number. More... | |
| struct | donner::svg::DetachedNodeState |
| Document-local detached-node collection state. More... | |
| class | donner::svg::DocumentState |
| Shared mutable state behind SVGDocument and SVGElement facades. More... | |
| class | donner::svg::DocumentReadAccess |
| Scoped read access to a DocumentState. More... | |
| class | donner::svg::DocumentWriteAccess |
| Scoped write access to a DocumentState. More... | |
| class | donner::svg::DetachedNodeCollectionDeferral |
| Scoped deferral for detached-node collection during snapshot or observer epochs. More... | |
| class | donner::svg::DocumentMutationBatch |
| Scoped write access that coalesces nested DOM mutation revision bumps. More... | |
Namespaces | |
| namespace | donner |
| Top-level Donner namespace, which is split into different sub-namespaces such as donner::svg and donner::css. | |
| namespace | donner::svg |
| Donner SVG library, which can load, manipulate and render SVG files. | |
Enumerations | |
| enum class | donner::svg::ThreadingMode { donner::svg::SingleThreaded , donner::svg::ConcurrentDom } |
| DOM threading policy for a document. More... | |
| struct donner::svg::DetachedNodeDiagnostics |
Summary of detached-node collection state.
| struct donner::svg::DocumentAccessDiagnostics |
Summary of document access and lock state.
| struct donner::svg::DocumentMutationRecord |
| struct donner::svg::DocumentMutationLogSnapshot |
Snapshot of mutation-log records after a caller-owned sequence number.
| Class Members | ||
|---|---|---|
| uint64_t | latestSequence = 0 | Latest sequence in the document. |
| bool | missedRecords = false | True if older records were truncated. |
| vector< DocumentMutationRecord > | records | Mutation records newer than the caller cursor. |