@deck.gl/core
Version:
deck.gl core library
14 lines • 446 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');
}
render(options) {
return this._render(options);
}
}
//# sourceMappingURL=draw-layers-pass.js.map