MLightCAD
    Preparing search index...

    Text / mtext-renderer memory stats from AcTrMTextRenderer.estimateMemoryUsage.

    interface AcApMemoryFontStats {
        estimatedBytes: number;
        fonts: AcApMemoryFontRow[];
        indexedDbBytes: number;
        indexedDbFontCount: number;
        isEstimated: true;
        loadedFontCount: number;
        mainThreadBytes: number;
        missedCount: number;
        missedNames: string[];
        report?: MemoryUsageReport;
        workerBytes: number;
    }
    Index

    Properties

    estimatedBytes: number

    Live isolate memory (main + workers); excludes IndexedDB storage.

    indexedDbBytes: number

    Persistent IndexedDB font blobs (disk/storage). Not included in estimatedBytes or the memory pie chart.

    indexedDbFontCount: number
    isEstimated: true
    loadedFontCount: number
    mainThreadBytes: number
    missedCount: number
    missedNames: string[]
    report?: MemoryUsageReport

    Full mtext-renderer report when available.

    workerBytes: number