@luma.gl/core
Version:
The luma.gl core Device API
17 lines • 494 B
JavaScript
// luma.gl
// SPDX-License-Identifier: MIT
// Copyright (c) vis.gl contributors
import { Resource } from "./resource.js";
/** Synchronization primitive that resolves when GPU work is completed */
export class Fence extends Resource {
static defaultProps = {
...Resource.defaultProps
};
get [Symbol.toStringTag]() {
return 'Fence';
}
constructor(device, props = {}) {
super(device, props, Fence.defaultProps);
}
}
//# sourceMappingURL=fence.js.map