We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b74686b commit 023bccfCopy full SHA for 023bccf
1 file changed
sdk/tests/conformance/textures/misc/texture-active-bind.html
@@ -85,6 +85,10 @@
85
}
86
wtu.glErrorShouldBe(gl, gl.NO_ERROR);
87
88
+ // check that OOB returns error
89
+ gl.activeTexture(gl.TEXTURE0 + gl.getParameter(gl.MAX_COMBINED_TEXTURE_IMAGE_UNITS));
90
+ wtu.glErrorShouldBe(gl, gl.INVALID_ENUM);
91
+
92
// now use each texture unit to write into the textures,
93
for (var ii = 0; ii < texunits; ++ii) {
94
var c = colors[ii];
0 commit comments