starry / backend /libs /three /textures /FramebufferTexture.d.ts
k-l-lambda's picture
feat: add Python ML services (CPU mode) with model download
2b7aae2
import { Texture } from './Texture';
import { PixelFormat } from '../constants';
export class FramebufferTexture extends Texture {
readonly isFramebufferTexture: true;
constructor(width: number, height: number, format: PixelFormat);
}