2021-05-25 14:58:20 +02:00
|
|
|
/**
|
|
|
|
* Custom TFJS backend for Human based on WebGL
|
|
|
|
* Not used by default
|
|
|
|
*/
|
2021-03-17 23:57:00 +01:00
|
|
|
export declare const config: {
|
|
|
|
name: string;
|
|
|
|
priority: number;
|
2021-04-09 16:02:40 +02:00
|
|
|
canvas: OffscreenCanvas | HTMLCanvasElement | null;
|
2021-05-23 03:47:59 +02:00
|
|
|
gl: unknown;
|
2021-03-17 23:57:00 +01:00
|
|
|
width: number;
|
|
|
|
height: number;
|
|
|
|
webGLattr: {
|
|
|
|
alpha: boolean;
|
|
|
|
antialias: boolean;
|
|
|
|
premultipliedAlpha: boolean;
|
|
|
|
preserveDrawingBuffer: boolean;
|
|
|
|
depth: boolean;
|
|
|
|
stencil: boolean;
|
|
|
|
failIfMajorPerformanceCaveat: boolean;
|
|
|
|
desynchronized: boolean;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
export declare function register(): void;
|