File size: 239 Bytes
2b7aae2
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
import { Texture } from './Texture';
import { PixelFormat } from '../constants';

export class FramebufferTexture extends Texture {
	readonly isFramebufferTexture: true;

	constructor(width: number, height: number, format: PixelFormat);
}