@itwin/core-frontend
Version:
iTwin.js frontend components
12 lines • 580 B
TypeScript
/** Interface implemented by any type that potentially owns WebGL resources that must be explicitly freed.
* Resources are freed in the inherited `dispose` method.
* @internal
*/
export interface WebGLDisposable extends Disposable {
/** Test whether the object currently holds any unreleased WebGL resources.
* This property should *always* return false after `dispose` has been called.
* @returns true if the object has released any and all WebGL resources it may have previously owned.
*/
isDisposed: boolean;
}
//# sourceMappingURL=Disposable.d.ts.map