@luma.gl/core
Version:
The luma.gl core Device API
21 lines • 676 B
JavaScript
// luma.gl
// SPDX-License-Identifier: MIT
// Copyright (c) vis.gl contributors
import { Resource } from "./resource.js";
/**
* Represents the finished contents of exactly one CommandEncoder. Backends may store native
* command buffers or replayable command lists internally, but submission must preserve the same
* recorded command ordering.
*/
export class CommandBuffer extends Resource {
get [Symbol.toStringTag]() {
return 'CommandBuffer';
}
constructor(device, props) {
super(device, props, CommandBuffer.defaultProps);
}
static defaultProps = {
...Resource.defaultProps
};
}
//# sourceMappingURL=command-buffer.js.map