Files
lan-manager/web/node_modules/@antv/g-webgpu-engine/es/webgl/ReglElements.d.ts
openclaw 0a5f6a8047 Initial commit: Lan-manager project code
- Go backend (server/)
- Frontend (web/, server/static/)
- Database and deployment files
- Scripts and docs

Co-Authored-By: 狸花猫/Claude-Qwen3.6-Plus 🐾
2026-04-20 00:52:58 +08:00

15 lines
509 B
TypeScript

import { IElements, IElementsInitializationOptions } from '@antv/g-webgpu-core';
import regl from 'regl';
/**
* @see https://github.com/regl-project/regl/blob/gh-pages/API.md#elements
*/
export default class ReglElements implements IElements {
private elements;
constructor(reGl: regl.Regl, options: IElementsInitializationOptions);
get(): regl.Elements;
subData({ data, }: {
data: number[] | number[][] | Uint8Array | Uint16Array | Uint32Array;
}): void;
destroy(): void;
}