Skip to content

Commit 026200f

Browse files
authored
Allow GLBoolean as param in pixelstorei
fixes microsoft#27542
1 parent 54a5be1 commit 026200f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/lib.dom.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15756,7 +15756,7 @@ interface WebGLRenderingContextBase {
1575615756
isTexture(texture: WebGLTexture | null): GLboolean;
1575715757
lineWidth(width: GLfloat): void;
1575815758
linkProgram(program: WebGLProgram): void;
15759-
pixelStorei(pname: GLenum, param: GLint): void;
15759+
pixelStorei(pname: GLenum, param: GLint | GLboolean): void;
1576015760
polygonOffset(factor: GLfloat, units: GLfloat): void;
1576115761
readPixels(x: GLint, y: GLint, width: GLsizei, height: GLsizei, format: GLenum, type: GLenum, pixels: ArrayBufferView | null): void;
1576215762
renderbufferStorage(target: GLenum, internalformat: GLenum, width: GLsizei, height: GLsizei): void;

0 commit comments

Comments
 (0)