@luma.gl/core
Version:
The luma.gl core Device API
12 lines (9 loc) • 311 B
text/typescript
// luma.gl
// SPDX-License-Identifier: MIT
// Copyright (c) vis.gl contributors
import type {PipelineFactory} from './pipeline-factory';
import type {ShaderFactory} from './shader-factory';
export type CoreModuleState = {
defaultPipelineFactory?: PipelineFactory;
defaultShaderFactory?: ShaderFactory;
};