Skip to content

Commit

Permalink
Test framebufferPixelLocalClearValuefv with near-overflow offset. (#3648
Browse files Browse the repository at this point in the history
)

Associated with crbug.com/332939155.
  • Loading branch information
kenrussell authored Apr 23, 2024
1 parent a49331a commit 992583d
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -226,6 +226,8 @@
wtu.glErrorShouldBe(gl, gl.INVALID_VALUE);
pls.framebufferPixelLocalClearValuefvWEBGL(2, new Float32Array(5), 2);
wtu.glErrorShouldBe(gl, gl.INVALID_VALUE);
pls.framebufferPixelLocalClearValuefvWEBGL(2, new Float32Array(5), 4294967295);
wtu.glErrorShouldBe(gl, gl.INVALID_VALUE);
pls.framebufferPixelLocalClearValuefvWEBGL(1, [0, 0, 0, 0, 0], 2);
wtu.glErrorShouldBe(gl, gl.INVALID_VALUE);
pls.framebufferPixelLocalClearValueivWEBGL(0, new Int32Array(5), 2);
Expand Down

0 comments on commit 992583d

Please sign in to comment.