phantasmal-world/src/core/rendering/Texture.ts

34 lines
735 B
TypeScript
Raw Normal View History

import { Gfx } from "./Gfx";
2020-01-20 00:16:28 +08:00
export enum TextureFormat {
RGBA_S3TC_DXT1,
RGBA_S3TC_DXT3,
}
export class Texture {
gfx_texture: unknown;
2020-01-20 00:16:28 +08:00
constructor(
private readonly gfx: Gfx,
private readonly format: TextureFormat,
2020-01-20 00:16:28 +08:00
private readonly width: number,
private readonly height: number,
private readonly data: ArrayBuffer,
) {}
upload(): void {
if (this.gfx_texture == undefined) {
this.gfx_texture = this.gfx.create_texture(
this.format,
this.width,
this.height,
this.data,
);
2020-01-20 00:16:28 +08:00
}
}
destroy(): void {
this.gfx.destroy_texture(this.gfx_texture);
2020-01-20 00:16:28 +08:00
}
}