UNPKG

@luma.gl/core

Version:

The luma.gl core Device API

19 lines 556 B
// luma.gl // SPDX-License-Identifier: MIT // Copyright (c) vis.gl contributors import { Resource } from "./resource.js"; export class ComputePass extends Resource { constructor(device, props) { super(device, props, ComputePass.defaultProps); } static defaultProps = { ...Resource.defaultProps, timestampQuerySet: undefined, beginTimestampIndex: undefined, endTimestampIndex: undefined }; get [Symbol.toStringTag]() { return 'ComputePass'; } } //# sourceMappingURL=compute-pass.js.map