MLightCAD
    Preparing search index...

    Interface AcApMemorySnapshot

    Structured memory snapshot for the MEM diagnostics palette.

    Geometry sizes from batch buffers are relatively accurate; other categories are labeled via AcApMemoryCategoryRow.isEstimated.

    interface AcApMemorySnapshot {
        collectedAt: number;
        dataModel: AcApMemoryDataModelStats;
        fonts: AcApMemoryFontStats;
        geometry: { layers: AcApMemoryGeometryLayerRow[]; scene: AcTrSceneStats };
        heap?: AcApMemoryHeapStats;
        materials: AcTrStyleManagerStats;
        spatial: {
            layouts: AcApMemorySpatialLayoutRow[];
            totalChildItems: number;
            totalEstimatedBytes: number;
            totalRootItems: number;
        };
        summary: AcApMemoryCategoryRow[];
    }
    Index

    Properties

    collectedAt: number
    geometry: { layers: AcApMemoryGeometryLayerRow[]; scene: AcTrSceneStats }
    materials: AcTrStyleManagerStats
    spatial: {
        layouts: AcApMemorySpatialLayoutRow[];
        totalChildItems: number;
        totalEstimatedBytes: number;
        totalRootItems: number;
    }