@deck.gl/core
Version:
deck.gl core library
11 lines • 380 B
JavaScript
// deck.gl
// SPDX-License-Identifier: MIT
// Copyright (c) vis.gl contributors
import LayersPass from "./layers-pass.js";
export default class DrawLayersPass extends LayersPass {
shouldDrawLayer(layer) {
const { operation } = layer.props;
return operation.includes('draw') || operation.includes('terrain');
}
}
//# sourceMappingURL=draw-layers-pass.js.map