UNPKG

439 BJavaScriptView Raw
1import { TYPES, FORMATS } from '@pixi/constants';
2
3class GLTexture {
4 constructor(texture) {
5 this.texture = texture;
6 this.width = -1;
7 this.height = -1;
8 this.dirtyId = -1;
9 this.dirtyStyleId = -1;
10 this.mipmap = false;
11 this.wrapMode = 33071;
12 this.type = TYPES.UNSIGNED_BYTE;
13 this.internalFormat = FORMATS.RGBA;
14 this.samplerType = 0;
15 }
16}
17
18export { GLTexture };
19//# sourceMappingURL=GLTexture.mjs.map