UNPKG

apl-easy-gl

Version:
12 lines (11 loc) 364 B
export interface generateMipmapOptions { minFilter: number; magFilter: number; wrapS: number; wrapT: number; flipY: boolean; anisotropy: number; width: number; height: number; } export declare function generateMipmap(gl: WebGLRenderingContext, texture: WebGLTexture, opts?: Partial<generateMipmapOptions>): WebGLTexture;