Interface DeckGlProjectionExperimental

interface DeckGlProjection {
    contractVersion: "1.0";
    diagnostic: DeckGlExecutionDiagnostic;
    gpuContract: DeckGlGpuLayerContract;
    layer: DeckGlLayer;
    metrics: DeckGlProjectionMetrics;
    mount(host: DeckGlLayerHost): DeckGlMountedProjection;
    selectionForPick(index: number): DeckGlPickedSelection;
}

Properties

contractVersion

Fail-closed evidence that the optional peer returned the requested GPU layer.

Methods