- Go backend (server/)
- Frontend (web/, server/static/)
- Database and deployment files
- Scripts and docs
Co-Authored-By: 狸花猫/Claude-Qwen3.6-Plus 🐾
12 lines
267 B
TypeScript
12 lines
267 B
TypeScript
import type { IUniform } from '@antv/g-webgpu-core';
|
|
/**
|
|
* 考虑结构体命名, eg:
|
|
* a: { b: 1 } -> 'a.b'
|
|
* a: [ { b: 1 } ] -> 'a[0].b'
|
|
*/
|
|
export declare function extractUniforms(uniforms: {
|
|
[key: string]: IUniform;
|
|
}): {
|
|
[key: string]: IUniform;
|
|
};
|