diff options
Diffstat (limited to 'dom/canvas/test/webgl-conf/checkout/conformance/rendering')
31 files changed, 3581 insertions, 0 deletions
diff --git a/dom/canvas/test/webgl-conf/checkout/conformance/rendering/00_test_list.txt b/dom/canvas/test/webgl-conf/checkout/conformance/rendering/00_test_list.txt new file mode 100644 index 000000000..e22f73b5a --- /dev/null +++ b/dom/canvas/test/webgl-conf/checkout/conformance/rendering/00_test_list.txt @@ -0,0 +1,28 @@ +--min-version 1.0.4 --max-version 1.9.9 clipping-wide-points.html +--min-version 1.0.2 culling.html +--min-version 1.0.4 default-texture-draw-bug.html +draw-arrays-out-of-bounds.html +draw-elements-out-of-bounds.html +--min-version 1.0.4 draw-with-changing-start-vertex-bug.html +--min-version 1.0.3 framebuffer-switch.html +--min-version 1.0.3 framebuffer-texture-switch.html +gl-clear.html +--min-version 1.0.3 gl-drawarrays.html +gl-drawelements.html +gl-scissor-test.html +--min-version 1.0.2 gl-scissor-fbo-test.html +--min-version 1.0.3 gl-scissor-canvas-dimensions.html +--min-version 1.0.3 gl-viewport-test.html +--min-version 1.0.3 many-draw-calls.html +more-than-65536-indices.html +multisample-corruption.html +--min-version 1.0.3 negative-one-index.html +out-of-bounds-index-buffers.html +--min-version 1.0.3 point-no-attributes.html +point-size.html +--min-version 1.0.4 point-specific-shader-variables.html +--min-version 1.0.3 point-with-gl-pointcoord-in-fragment-shader.html +--min-version 1.0.3 polygon-offset.html +--min-version 1.0.2 simple.html +triangle.html +line-loop-tri-fan.html diff --git a/dom/canvas/test/webgl-conf/checkout/conformance/rendering/clipping-wide-points.html b/dom/canvas/test/webgl-conf/checkout/conformance/rendering/clipping-wide-points.html new file mode 100644 index 000000000..85234ec37 --- /dev/null +++ b/dom/canvas/test/webgl-conf/checkout/conformance/rendering/clipping-wide-points.html @@ -0,0 +1,47 @@ +<!-- + +/* +** Copyright (c) 2016 The Khronos Group Inc. +** +** Permission is hereby granted, free of charge, to any person obtaining a +** copy of this software and/or associated documentation files (the +** "Materials"), to deal in the Materials without restriction, including +** without limitation the rights to use, copy, modify, merge, publish, +** distribute, sublicense, and/or sell copies of the Materials, and to +** permit persons to whom the Materials are furnished to do so, subject to +** the following conditions: +** +** The above copyright notice and this permission notice shall be included +** in all copies or substantial portions of the Materials. +** +** THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +** EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +** MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +** IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +** CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +** TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +** MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. +*/ + +--> + +<!DOCTYPE html> +<html> +<head> +<title>Clipping wide points test</title> +<meta charset="utf-8"> +<link rel="stylesheet" href="../../resources/js-test-style.css"/> +<script src="../../js/js-test-pre.js"></script> +<script src="../../js/webgl-test-utils.js"></script> +</head> +<body> +<canvas id="testbed" width="1" height="1"></canvas> +<div id="description"></div> +<div id="console"></div> +<script> +var contextVersion = 1; +</script> +<script src="../../js/tests/clipping-wide-points.js"></script> +<script src="../../js/js-test-post.js"></script> +</body> +</html> diff --git a/dom/canvas/test/webgl-conf/checkout/conformance/rendering/culling.html b/dom/canvas/test/webgl-conf/checkout/conformance/rendering/culling.html new file mode 100644 index 000000000..e35777ea8 --- /dev/null +++ b/dom/canvas/test/webgl-conf/checkout/conformance/rendering/culling.html @@ -0,0 +1,148 @@ +<!-- + +/* +** Copyright (c) 2012 The Khronos Group Inc. +** +** Permission is hereby granted, free of charge, to any person obtaining a +** copy of this software and/or associated documentation files (the +** "Materials"), to deal in the Materials without restriction, including +** without limitation the rights to use, copy, modify, merge, publish, +** distribute, sublicense, and/or sell copies of the Materials, and to +** permit persons to whom the Materials are furnished to do so, subject to +** the following conditions: +** +** The above copyright notice and this permission notice shall be included +** in all copies or substantial portions of the Materials. +** +** THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +** EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +** MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +** IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +** CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +** TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +** MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. +*/ + +--> + +<!DOCTYPE html> +<html> +<head> +<meta charset="utf-8"> +<link rel="stylesheet" href="../../resources/js-test-style.css"/> +<script src="../../js/js-test-pre.js"></script> +<script src="../../js/webgl-test-utils.js"></script> +<script id="vshader" type="x-shader/x-vertex"> +attribute vec2 pos; + +void main() +{ + gl_Position = vec4(pos, 0, 1); +} +</script> + +<script id="fshader" type="x-shader/x-fragment"> +precision mediump float; +uniform vec4 col; + +void main() +{ + gl_FragColor = col; +} +</script> + +<script> +"use strict"; +var wtu = WebGLTestUtils; + +function draw(gl, arr, colLoc, col) { + var vertices = new Float32Array(arr); + var vertBuf = gl.createBuffer(); + gl.bindBuffer(gl.ARRAY_BUFFER, vertBuf); + gl.bufferData(gl.ARRAY_BUFFER, vertices, gl.STATIC_DRAW); + gl.vertexAttribPointer(0, 2, gl.FLOAT, false, 0, 0); + gl.uniform4fv(colLoc, col); + gl.drawArrays(gl.TRIANGLE_STRIP, 0, vertices.length / 2); +} + +function clear(gl, col) { + gl.clearColor(col[0], col[1], col[2], col[3]); + gl.clear(gl.COLOR_BUFFER_BIT | gl.DEPTH_BUFFER_BIT); +} + +function check(gl, winding, shoulddraw) { + var msg = winding + ' face was ' + (shoulddraw ? '' : 'not ') + 'drawn.'; + wtu.checkCanvasRect(gl, 0, 0, 1, 1, [0, 255, 0, 255], msg); +} + +function runTest() { + var cwVertices = [-1, -1, -1, 1, 1, -1, 1, 1]; + var ccwVertices = [-1, 1, -1, -1, 1, 1, 1, -1]; + var red = [1, 0, 0, 1]; + var green = [0, 1, 0, 1]; + var ok; + + var gl = wtu.create3DContext('testbed', { antialias: false }); + if (!gl) { + testFailed('could not create context'); + return; + } + var program = wtu.setupProgram(gl, ['vshader', 'fshader'], ['pos']); + var colLoc = gl.getUniformLocation(program, 'col'); + + gl.enableVertexAttribArray(0); + + debug('CULL_FACE should be off by default'); + clear(gl, red); + draw(gl, ccwVertices, colLoc, green); + check(gl, 'CCW', true); + clear(gl, red); + draw(gl, cwVertices, colLoc, green); + check(gl, 'CW', true); + + debug('Enabling CULL_FACE'); + gl.enable(gl.CULL_FACE); + + debug('BACK and CCW should be set by default'); + clear(gl, red); + draw(gl, ccwVertices, colLoc, green); + check(gl, 'CCW', true); + clear(gl, green); + draw(gl, cwVertices, colLoc, red); + check(gl, 'CW', false); + + var tests = [{ cullFace : 'BACK', frontFace : 'CCW', drawCCW : true, drawCW : false}, + { cullFace : 'BACK', frontFace : 'CW', drawCCW : false, drawCW : true}, + { cullFace : 'FRONT', frontFace : 'CCW', drawCCW : false, drawCW : true }, + { cullFace : 'FRONT', frontFace : 'CW', drawCCW : true, drawCW : false}, + { cullFace : 'FRONT_AND_BACK', frontFace : 'CCW', drawCCW : false, drawCW : false}, + { cullFace : 'FRONT_AND_BACK', frontFace : 'CW', drawCCW : false, drawCW : false}]; + + for (var i = 0; i < tests.length; ++i) { + var t = tests[i]; + debug('Setting ' + t.cullFace + ' and ' + t.frontFace); + gl.cullFace(gl[t.cullFace]); + gl.frontFace(gl[t.frontFace]); + clear(gl, t.drawCCW ? red : green); + draw(gl, ccwVertices, colLoc, t.drawCCW ? green : red); + check(gl, 'CCW', t.drawCCW); + clear(gl, t.drawCW ? red : green); + draw(gl, cwVertices, colLoc, t.drawCW ? green : red); + check(gl, 'CW', t.drawCW); + } +} +</script> +</head> +<body> +<canvas id="testbed" width="16" height="16" style="width:50px; height:50px"></canvas> +<div id="description"></div> +<div id="console"></div> +<script> +"use strict"; +description('Verify that culling works'); +runTest(); +var successfullyParsed = true; +</script> +<script src="../../js/js-test-post.js"></script> +</body> +</html> diff --git a/dom/canvas/test/webgl-conf/checkout/conformance/rendering/default-texture-draw-bug.html b/dom/canvas/test/webgl-conf/checkout/conformance/rendering/default-texture-draw-bug.html new file mode 100644 index 000000000..ec4978176 --- /dev/null +++ b/dom/canvas/test/webgl-conf/checkout/conformance/rendering/default-texture-draw-bug.html @@ -0,0 +1,90 @@ +<!-- + +/* +** Copyright (c) 2015 The Khronos Group Inc. +** +** Permission is hereby granted, free of charge, to any person obtaining a +** copy of this software and/or associated documentation files (the +** "Materials"), to deal in the Materials without restriction, including +** without limitation the rights to use, copy, modify, merge, publish, +** distribute, sublicense, and/or sell copies of the Materials, and to +** permit persons to whom the Materials are furnished to do so, subject to +** the following conditions: +** +** The above copyright notice and this permission notice shall be included +** in all copies or substantial portions of the Materials. +** +** THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +** EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +** MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +** IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +** CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +** TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +** MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. +*/ + +--> + +<html> +<head> +<meta charset="utf-8"> +<title>WebGL Default Texture Draw Bug Conformance Tests</title> +<link rel="stylesheet" href="../../resources/js-test-style.css"/> +<script src="../../js/js-test-pre.js"></script> +<script src="../../js/webgl-test-utils.js"></script> + +</head> +<body> +<canvas id="c"></canvas> +<div id="description"></div> +<div id="console"></div> +<script> +"use strict"; +description("This test attempts to provoke a Chrome bug that occured when drawing with textures when one was never bound. <a href='http://crbug.com/524144'>crbug.com/524144</a>"); + +debug(""); + +var wtu = WebGLTestUtils; +var gl = wtu.create3DContext("c"); +var canvas = gl.canvas; + +if (!gl) { + testFailed("WebGL context does not exist"); +} else { + testPassed("WebGL context exists"); + + runDrawTests(); + + wtu.glErrorShouldBe(gl, gl.NO_ERROR, "there should be no errors"); +} + +function runDrawTests(drawType) { + debug("Test that drawing with a texture when no textures have been bound gives the expected black output"); + canvas.width = 50; canvas.height = 50; + gl.viewport(0, 0, canvas.width, canvas.height); + + // Set up a program that will draw with a texture + var program = wtu.setupNoTexCoordTextureProgram(gl); + + wtu.setupIndexedQuad(gl); + for (var i = 0 ; i < 100 && _bufferedConsoleLogs != null; ++i) { + // Clear to white. + gl.clearColor(1.0, 1.0, 1.0, 1.0); + gl.clear(gl.COLOR_BUFFER_BIT | gl.DEPTH_BUFFER_BIT); + + // Draw without binding any textures. + gl.drawElements(gl.TRIANGLES, 6, gl.UNSIGNED_SHORT, 0); + + // Check to ensure the entire canvas is black. + wtu.checkCanvasRect(gl, 0.0, 0.0, canvas.width, canvas.height, + [0.0, 0.0, 0.0], "Draw should pass", 2); + } +} + +debug(""); +var successfullyParsed = true; +</script> +<script src="../../js/js-test-post.js"></script> + +</body> +</html> diff --git a/dom/canvas/test/webgl-conf/checkout/conformance/rendering/draw-arrays-out-of-bounds.html b/dom/canvas/test/webgl-conf/checkout/conformance/rendering/draw-arrays-out-of-bounds.html new file mode 100644 index 000000000..4ab292367 --- /dev/null +++ b/dom/canvas/test/webgl-conf/checkout/conformance/rendering/draw-arrays-out-of-bounds.html @@ -0,0 +1,54 @@ +<!-- + +/* +** Copyright (c) 2012 The Khronos Group Inc. +** +** Permission is hereby granted, free of charge, to any person obtaining a +** copy of this software and/or associated documentation files (the +** "Materials"), to deal in the Materials without restriction, including +** without limitation the rights to use, copy, modify, merge, publish, +** distribute, sublicense, and/or sell copies of the Materials, and to +** permit persons to whom the Materials are furnished to do so, subject to +** the following conditions: +** +** The above copyright notice and this permission notice shall be included +** in all copies or substantial portions of the Materials. +** +** THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +** EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +** MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +** IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +** CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +** TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +** MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. +*/ + +--> + +<!DOCTYPE html> +<html> +<head> +<meta charset="utf-8"> +<link rel="stylesheet" href="../../resources/js-test-style.css"/> +<script src="../../js/js-test-pre.js"></script> +<script src="../../js/webgl-test-utils.js"></script> +<script src="../../js/tests/out-of-bounds-test.js"></script> +</head> +<body> +<div id="description"></div> +<div id="console"></div> + +<script> +"use strict"; +description("Test of drawArrays with out-of-bounds parameters"); + +OutOfBoundsTest.runDrawArraysTest('gl.drawArrays(gl.TRIANGLES, $(offset), $(count))', + WebGLTestUtils.create3DContext(), WebGLTestUtils); + +debug("") +var successfullyParsed = true; +</script> + +<script src="../../js/js-test-post.js"></script> +</body> +</html> diff --git a/dom/canvas/test/webgl-conf/checkout/conformance/rendering/draw-elements-out-of-bounds.html b/dom/canvas/test/webgl-conf/checkout/conformance/rendering/draw-elements-out-of-bounds.html new file mode 100644 index 000000000..06f49a8d4 --- /dev/null +++ b/dom/canvas/test/webgl-conf/checkout/conformance/rendering/draw-elements-out-of-bounds.html @@ -0,0 +1,54 @@ +<!-- + +/* +** Copyright (c) 2012 The Khronos Group Inc. +** +** Permission is hereby granted, free of charge, to any person obtaining a +** copy of this software and/or associated documentation files (the +** "Materials"), to deal in the Materials without restriction, including +** without limitation the rights to use, copy, modify, merge, publish, +** distribute, sublicense, and/or sell copies of the Materials, and to +** permit persons to whom the Materials are furnished to do so, subject to +** the following conditions: +** +** The above copyright notice and this permission notice shall be included +** in all copies or substantial portions of the Materials. +** +** THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +** EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +** MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +** IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +** CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +** TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +** MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. +*/ + +--> + +<!DOCTYPE html> +<html> +<head> +<meta charset="utf-8"> +<link rel="stylesheet" href="../../resources/js-test-style.css"/> +<script src="../../js/js-test-pre.js"></script> +<script src="../../js/webgl-test-utils.js"></script> +<script src="../../js/tests/out-of-bounds-test.js"></script> +</head> +<body> +<div id="description"></div> +<div id="console"></div> + +<script> +"use strict"; +description("Test of drawElements with out-of-bounds parameters"); + +OutOfBoundsTest.runDrawElementsTest("gl.drawElements(gl.TRIANGLES, $(count), $(type), $(offset))", + WebGLTestUtils.create3DContext(), WebGLTestUtils); + +debug(""); +var successfullyParsed = true; +</script> + +<script src="../../js/js-test-post.js"></script> +</body> +</html> diff --git a/dom/canvas/test/webgl-conf/checkout/conformance/rendering/draw-with-changing-start-vertex-bug.html b/dom/canvas/test/webgl-conf/checkout/conformance/rendering/draw-with-changing-start-vertex-bug.html new file mode 100644 index 000000000..6b817c341 --- /dev/null +++ b/dom/canvas/test/webgl-conf/checkout/conformance/rendering/draw-with-changing-start-vertex-bug.html @@ -0,0 +1,133 @@ +<!-- + +/* +** Copyright (c) 2016 The Khronos Group Inc. +** +** Permission is hereby granted, free of charge, to any person obtaining a +** copy of this software and/or associated documentation files (the +** "Materials"), to deal in the Materials without restriction, including +** without limitation the rights to use, copy, modify, merge, publish, +** distribute, sublicense, and/or sell copies of the Materials, and to +** permit persons to whom the Materials are furnished to do so, subject to +** the following conditions: +** +** The above copyright notice and this permission notice shall be included +** in all copies or substantial portions of the Materials. +** +** THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +** EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +** MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +** IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +** CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +** TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +** MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. +*/ + +This bug would occur after the app would render several times with the +same vertex attributes and buffers, but using a different start offset. +One of the buffers would likely have to be DYNAMIC. + +See http://anglebug.com/1327 and http://crbug.com/594509 + +--> + +<!DOCTYPE html> +<html> +<head> +<meta charset="utf-8"> +<title>Draw with changing start vertex test</title> +<link rel="stylesheet" href="../../resources/js-test-style.css"/> +<script src="../../js/js-test-pre.js"></script> +<script src="../../js/webgl-test-utils.js"></script> +</head> +<body> +<canvas id="canvas" width="16" height="16"> </canvas> +<div id="description"></div> +<div id="console"></div> +<script id="vshader" type="x-shader/x-vertex"> +attribute mediump vec4 position; +attribute mediump vec4 test; +attribute mediump vec4 expected; +varying mediump vec4 color; +void main(void) +{ + gl_Position = position; + vec4 threshold = max(abs(expected) * 0.01, 1.0 / 64.0); + color = vec4(lessThanEqual(abs(test - expected), threshold)); +} +</script> + +<script id="fshader" type="x-shader/x-fragment"> +varying mediump vec4 color; +void main(void) +{ + gl_FragColor = color; +} +</script> + +<script> +"use strict"; +description("Test calling drawArrays with repeatedly with a different start vertex"); + +var wtu = WebGLTestUtils; +var canvas = document.getElementById("canvas1"); +var gl = wtu.create3DContext(canvas); + +var program = wtu.setupProgram(gl, ["vshader", "fshader"], ["position", "test", "expected"]); + +var vertexCount = 24; +var testData = new Float32Array(vertexCount); + +for (var index = 0; index < vertexCount; ++index) { + testData[index] = index; +} + +var quadData = new Float32Array(14) +quadData[0] = -1.0; quadData[1] = 1.0; +quadData[2] = -1.0; quadData[3] = -1.0; +quadData[4] = 1.0; quadData[5] = -1.0; +quadData[6] = -1.0; quadData[7] = 1.0; +quadData[8] = 1.0; quadData[9] = -1.0; +quadData[10] = 1.0; quadData[11] = 1.0; +quadData[12] = 0.0; quadData[13] = 0.0; + +var quadBuffer = gl.createBuffer(); +gl.bindBuffer(gl.ARRAY_BUFFER, quadBuffer); +gl.bufferData(gl.ARRAY_BUFFER, quadData, gl.STATIC_DRAW); +gl.vertexAttribPointer(0, 2, gl.FLOAT, false, 0, 0); +gl.enableVertexAttribArray(0); + +// Must be STATIC to trigger the bug. +var testBuffer = gl.createBuffer(); +gl.bindBuffer(gl.ARRAY_BUFFER, testBuffer); +gl.bufferData(gl.ARRAY_BUFFER, testData, gl.STATIC_DRAW); +gl.vertexAttribPointer(1, 1, gl.FLOAT, false, 0, 0); +gl.enableVertexAttribArray(1); + +// Must be DYNAMIC to trigger the bug. +var expectedBuffer = gl.createBuffer(); +gl.bindBuffer(gl.ARRAY_BUFFER, expectedBuffer); +gl.bufferData(gl.ARRAY_BUFFER, testData, gl.DYNAMIC_DRAW); +gl.vertexAttribPointer(2, 1, gl.FLOAT, false, 0, 0); +gl.enableVertexAttribArray(2); + +function check() { + wtu.checkCanvas(gl, [255, 255, 255, 255], "should be white"); +} + +gl.drawArrays(gl.TRIANGLES, 0, 6); +check() + +gl.drawArrays(gl.TRIANGLES, 0, 6); +check() + +gl.drawArrays(gl.TRIANGLES, 1, 6); +check() + +debug(""); +var successfullyParsed = true; +</script> + +<script src="../../js/js-test-post.js"></script> +</body> +</html> diff --git a/dom/canvas/test/webgl-conf/checkout/conformance/rendering/framebuffer-switch.html b/dom/canvas/test/webgl-conf/checkout/conformance/rendering/framebuffer-switch.html new file mode 100644 index 000000000..d4bede2c7 --- /dev/null +++ b/dom/canvas/test/webgl-conf/checkout/conformance/rendering/framebuffer-switch.html @@ -0,0 +1,111 @@ +<!-- + +/* +** Copyright (c) 2014 The Khronos Group Inc. +** +** Permission is hereby granted, free of charge, to any person obtaining a +** copy of this software and/or associated documentation files (the +** "Materials"), to deal in the Materials without restriction, including +** without limitation the rights to use, copy, modify, merge, publish, +** distribute, sublicense, and/or sell copies of the Materials, and to +** permit persons to whom the Materials are furnished to do so, subject to +** the following conditions: +** +** The above copyright notice and this permission notice shall be included +** in all copies or substantial portions of the Materials. +** +** THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +** EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +** MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +** IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +** CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +** TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +** MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. +*/ + +--> + +<!DOCTYPE html> +<html> +<head> +<meta charset="utf-8"> +<title>WebGL framebuffer switching conformance test.</title> +<link rel="stylesheet" href="../../resources/js-test-style.css"/> +<script src="../../js/js-test-pre.js"></script> +<script src="../../js/webgl-test-utils.js"> </script> +</head> +<body> +<canvas id="canvas" width="64" height="64"></canvas> +<div id="description"></div> +<div id="console"></div> +<script> +"use strict"; +description("Test framebuffer switching. The test switches between two framebuffers, copying rendering results from one to the other."); +var wtu = WebGLTestUtils; + +var gl = wtu.create3DContext("canvas"); +var program = wtu.setupTexturedQuad(gl); + +var tex1 = gl.createTexture(); +gl.bindTexture(gl.TEXTURE_2D, tex1); +gl.texImage2D(gl.TEXTURE_2D, 0, gl.RGBA, canvas.width, canvas.height, 0, gl.RGBA, gl.UNSIGNED_BYTE, null); +gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_MAG_FILTER, gl.NEAREST); +gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_MIN_FILTER, gl.NEAREST); +var fb1 = gl.createFramebuffer(); +gl.bindFramebuffer(gl.FRAMEBUFFER, fb1); +gl.framebufferTexture2D(gl.FRAMEBUFFER, gl.COLOR_ATTACHMENT0, gl.TEXTURE_2D, tex1, 0); + +var tex2 = gl.createTexture(); +gl.bindTexture(gl.TEXTURE_2D, tex2); +gl.texImage2D(gl.TEXTURE_2D, 0, gl.RGBA, canvas.width, canvas.height, 0, gl.RGBA, gl.UNSIGNED_BYTE, null); +gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_MAG_FILTER, gl.NEAREST); +gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_MIN_FILTER, gl.NEAREST); +var fb2 = gl.createFramebuffer(); +gl.bindFramebuffer(gl.FRAMEBUFFER, fb2); +gl.framebufferTexture2D(gl.FRAMEBUFFER, gl.COLOR_ATTACHMENT0, gl.TEXTURE_2D, tex2, 0); + +gl.bindTexture(gl.TEXTURE_2D, tex1); +gl.clearColor(1.0, 1.0, 1.0, 1.0); + +wtu.glErrorShouldBe(gl, gl.NO_ERROR, "Should be no errors from setup."); + +var iterate = function(checkFBOs, iterations) { + for (var i = 0; i < iterations; ++i) { + debug("Clearing framebuffer 1 to white"); + gl.bindFramebuffer(gl.FRAMEBUFFER, fb1); + if (checkFBOs) + shouldBe("gl.checkFramebufferStatus(gl.FRAMEBUFFER)", "gl.FRAMEBUFFER_COMPLETE"); + gl.clear(gl.COLOR_BUFFER_BIT); + + debug("Copying framebuffer 1 to framebuffer 2"); + gl.bindFramebuffer(gl.FRAMEBUFFER, fb2); + if (checkFBOs) + shouldBe("gl.checkFramebufferStatus(gl.FRAMEBUFFER)", "gl.FRAMEBUFFER_COMPLETE"); + gl.drawArrays(gl.TRIANGLES, 0, 6); + } + // Read what is in fb2 + wtu.checkCanvas(gl, [255,255,255,255], "Framebuffer 2 should be white"); +}; + +debug(""); +debug("Warm-up iteration"); +iterate(true, 1); + +debug(""); +debug("Iterating the test a few times since at least one bug it has exposed is somewhat flaky."); +for (var i = 0; i < 3; ++i) { + debug(""); + debug("Iteration " + (i + 1)); + iterate(false, 2); +} + +debug(""); +wtu.glErrorShouldBe(gl, gl.NO_ERROR, "Should be no errors at the end of the test."); + +finishTest(); + +var successfullyParsed = true; +</script> +</body> +</html> + diff --git a/dom/canvas/test/webgl-conf/checkout/conformance/rendering/framebuffer-texture-switch.html b/dom/canvas/test/webgl-conf/checkout/conformance/rendering/framebuffer-texture-switch.html new file mode 100644 index 000000000..d2115ccbb --- /dev/null +++ b/dom/canvas/test/webgl-conf/checkout/conformance/rendering/framebuffer-texture-switch.html @@ -0,0 +1,107 @@ +<!-- + +/* +** Copyright (c) 2014 The Khronos Group Inc. +** +** Permission is hereby granted, free of charge, to any person obtaining a +** copy of this software and/or associated documentation files (the +** "Materials"), to deal in the Materials without restriction, including +** without limitation the rights to use, copy, modify, merge, publish, +** distribute, sublicense, and/or sell copies of the Materials, and to +** permit persons to whom the Materials are furnished to do so, subject to +** the following conditions: +** +** The above copyright notice and this permission notice shall be included +** in all copies or substantial portions of the Materials. +** +** THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +** EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +** MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +** IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +** CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +** TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +** MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. +*/ + +--> + +<!DOCTYPE html> +<html> +<head> +<meta charset="utf-8"> +<title>WebGL framebuffer texture attachment switching conformance test.</title> +<link rel="stylesheet" href="../../resources/js-test-style.css"/> +<script src="../../js/js-test-pre.js"></script> +<script src="../../js/webgl-test-utils.js"> </script> +</head> +<body> +<canvas id="canvas" width="64" height="64"></canvas> +<div id="description"></div> +<div id="console"></div> +<script> +"use strict"; +description("Test framebuffer texture attachment switching. The test uses one framebuffer object and switches its color attachment."); +var wtu = WebGLTestUtils; + +var gl = wtu.create3DContext("canvas"); +var program = wtu.setupTexturedQuad(gl); + +var fb = gl.createFramebuffer(); +gl.bindFramebuffer(gl.FRAMEBUFFER, fb); + +var tex2 = gl.createTexture(); +gl.bindTexture(gl.TEXTURE_2D, tex2); +gl.texImage2D(gl.TEXTURE_2D, 0, gl.RGBA, canvas.width, canvas.height, 0, gl.RGBA, gl.UNSIGNED_BYTE, null); +gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_MAG_FILTER, gl.NEAREST); +gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_MIN_FILTER, gl.NEAREST); + +var tex1 = gl.createTexture(); +gl.bindTexture(gl.TEXTURE_2D, tex1); +gl.texImage2D(gl.TEXTURE_2D, 0, gl.RGBA, canvas.width, canvas.height, 0, gl.RGBA, gl.UNSIGNED_BYTE, null); +gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_MAG_FILTER, gl.NEAREST); +gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_MIN_FILTER, gl.NEAREST); + +gl.clearColor(1.0, 1.0, 1.0, 1.0); + +wtu.glErrorShouldBe(gl, gl.NO_ERROR, "Should be no errors from setup."); + +var iterate = function(checkFBOs, iterations) { + for (var i = 0; i < iterations; ++i) { + debug("Clearing tex1 to white"); + gl.framebufferTexture2D(gl.FRAMEBUFFER, gl.COLOR_ATTACHMENT0, gl.TEXTURE_2D, tex1, 0); + if (checkFBOs) + shouldBe("gl.checkFramebufferStatus(gl.FRAMEBUFFER)", "gl.FRAMEBUFFER_COMPLETE"); + gl.clear(gl.COLOR_BUFFER_BIT); + + debug("Copying tex1 to tex2"); + gl.framebufferTexture2D(gl.FRAMEBUFFER, gl.COLOR_ATTACHMENT0, gl.TEXTURE_2D, tex2, 0); + if (checkFBOs) + shouldBe("gl.checkFramebufferStatus(gl.FRAMEBUFFER)", "gl.FRAMEBUFFER_COMPLETE"); + gl.drawArrays(gl.TRIANGLES, 0, 6); + } + // Read what is in tex2 + wtu.checkCanvas(gl, [255,255,255,255], "tex2 should be white"); +}; + +debug(""); +debug("Warm-up iteration"); +iterate(true, 1); + +debug(""); +debug("Iterating the test a few times since at least one bug it has exposed is somewhat flaky."); +for (var i = 0; i < 3; ++i) { + debug(""); + debug("Iteration " + (i + 1)); + iterate(false, 2); +} + +debug(""); +wtu.glErrorShouldBe(gl, gl.NO_ERROR, "Should be no errors at the end of the test."); + +finishTest(); + +var successfullyParsed = true; +</script> +</body> +</html> + diff --git a/dom/canvas/test/webgl-conf/checkout/conformance/rendering/gl-clear.html b/dom/canvas/test/webgl-conf/checkout/conformance/rendering/gl-clear.html new file mode 100644 index 000000000..7c3484894 --- /dev/null +++ b/dom/canvas/test/webgl-conf/checkout/conformance/rendering/gl-clear.html @@ -0,0 +1,88 @@ +<!-- + +/* +** Copyright (c) 2012 The Khronos Group Inc. +** +** Permission is hereby granted, free of charge, to any person obtaining a +** copy of this software and/or associated documentation files (the +** "Materials"), to deal in the Materials without restriction, including +** without limitation the rights to use, copy, modify, merge, publish, +** distribute, sublicense, and/or sell copies of the Materials, and to +** permit persons to whom the Materials are furnished to do so, subject to +** the following conditions: +** +** The above copyright notice and this permission notice shall be included +** in all copies or substantial portions of the Materials. +** +** THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +** EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +** MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +** IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +** CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +** TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +** MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. +*/ + +--> + +<!DOCTYPE html> +<html> +<head> +<meta charset="utf-8"> +<title>WebGL clear conformance test.</title> +<link rel="stylesheet" href="../../resources/js-test-style.css"/> +<script src="../../js/js-test-pre.js"></script> +<script src="../../js/webgl-test-utils.js"> </script> +</head> +<body> +<canvas id="example" width="1" height="1" style="width: 256px; height: 48px;"></canvas> +<div id="description"></div><div id="console"></div> +<script> +"use strict"; +description("Test clear."); +var wtu = WebGLTestUtils; +var gl = wtu.create3DContext("example"); +var program = wtu.setupTexturedQuad(gl); + +wtu.glErrorShouldBe(gl, gl.NO_ERROR, "Should be no errors from setup."); +wtu.checkCanvas(gl, [0,0,0,0], "should be 0,0,0,0"); + +gl.clearColor(1,1,1,1); +gl.clear(gl.COLOR_BUFFER_BIT); +wtu.checkCanvas(gl, [255,255,255,255], "should be 255,255,255,255"); + +gl.clearColor(0,0,0,0); +gl.clear(gl.COLOR_BUFFER_BIT); +wtu.checkCanvas(gl, [0,0,0,0], "should be 0,0,0,0"); + +gl.colorMask(false, false, false, true); +gl.clearColor(1,1,1,1); +gl.clear(gl.COLOR_BUFFER_BIT); +wtu.checkCanvas(gl, [0,0,0,255], "should be 0,0,0,255"); + +var tex = gl.createTexture(); + gl.bindTexture(gl.TEXTURE_2D, tex); + gl.texImage2D( + gl.TEXTURE_2D, 0, gl.RGBA, 1, 1, 0, gl.RGBA, gl.UNSIGNED_BYTE, + new Uint8Array([128, 128, 128, 192])); + +gl.disable(gl.DEPTH_TEST); +gl.disable(gl.BLEND); +gl.colorMask(true, true, true, true); +gl.drawArrays(gl.TRIANGLES, 0, 6); +wtu.checkCanvas(gl, [128,128,128,192], "should be 128,128,128,192"); + +gl.colorMask(false, false, false, true); +gl.clearColor(1,1,1,1); +gl.clear(gl.COLOR_BUFFER_BIT); +wtu.checkCanvas(gl, [128,128,128,255], "should be 128,128,128,255"); + +// TODO: Test depth and stencil clearing. + +debug(""); +var successfullyParsed = true; +</script> +<script src="../../js/js-test-post.js"></script> +</body> +</html> + diff --git a/dom/canvas/test/webgl-conf/checkout/conformance/rendering/gl-drawarrays.html b/dom/canvas/test/webgl-conf/checkout/conformance/rendering/gl-drawarrays.html new file mode 100644 index 000000000..44fb7fe5e --- /dev/null +++ b/dom/canvas/test/webgl-conf/checkout/conformance/rendering/gl-drawarrays.html @@ -0,0 +1,103 @@ +<!-- + +/* +** Copyright (c) 2014 The Khronos Group Inc. +** +** Permission is hereby granted, free of charge, to any person obtaining a +** copy of this software and/or associated documentation files (the +** "Materials"), to deal in the Materials without restriction, including +** without limitation the rights to use, copy, modify, merge, publish, +** distribute, sublicense, and/or sell copies of the Materials, and to +** permit persons to whom the Materials are furnished to do so, subject to +** the following conditions: +** +** The above copyright notice and this permission notice shall be included +** in all copies or substantial portions of the Materials. +** +** THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +** EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +** MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +** IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +** CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +** TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +** MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. +*/ + +--> + +<!DOCTYPE html> +<html> +<head> +<meta charset="utf-8"> +<title>WebGL drawArrays Test</title> +<link rel="stylesheet" href="../../resources/js-test-style.css"/> +<script src="../../js/desktop-gl-constants.js"></script> +<script src="../../js/js-test-pre.js"></script> +<script src="../../js/webgl-test-utils.js"> </script> +</head> +<body> +<canvas id="example" width="50" height="50"></canvas> +<div id="description"></div> +<div id="console"></div> +<script id="vshader" type="x-shader/x-vertex"> +attribute vec4 vPosition; +void main() +{ + gl_Position = vPosition; +} +</script> + +<script id="fshader" type="x-shader/x-fragment"> +void main() +{ + gl_FragColor = vec4(1.0,0.0,0.0,1.0); +} +</script> + +<script> +"use strict"; +function init() +{ + description(document.title); + + function checkDrawArrays(mode, count, expect, msg) { + gl.clear(gl.COLOR_BUFFER_BIT | gl.DEPTH_BUFFER_BIT); + gl.drawArrays(mode, 0, count); + wtu.glErrorShouldBe(gl, expect, msg); + } + + var wtu = WebGLTestUtils; + var gl = wtu.create3DContext("example"); + var program = wtu.setupProgram(gl, ["vshader", "fshader"], ["vPosition"]); + + var vertexObject = gl.createBuffer(); + gl.bindBuffer(gl.ARRAY_BUFFER, vertexObject); + gl.bufferData(gl.ARRAY_BUFFER, new Float32Array([ 0,0.5,0, -0.5,-0.5,0, 0.5,-0.5,0 ]), gl.STATIC_DRAW); + gl.enableVertexAttribArray(0); + + checkDrawArrays(gl.TRIANGLES, 3, + gl.INVALID_OPERATION, "gl.DrawArrays with no buffer attached to VAO should return INVALID_OPERATION"); + + gl.vertexAttribPointer(0, 3, gl.FLOAT, false, 0, 0); + + checkDrawArrays(gl.TRIANGLES, 3, + gl.NO_ERROR, "can call gl.DrawArrays with gl.TRIANGLES"); + + checkDrawArrays( + desktopGL['QUAD_STRIP'], 4, + gl.INVALID_ENUM, "gl.DrawArrays with QUAD_STRIP should return INVALID_ENUM"); + checkDrawArrays( + desktopGL['QUADS'], 4, + gl.INVALID_ENUM, "gl.DrawArrays with QUADS should return INVALID_ENUM"); + checkDrawArrays( + desktopGL['POLYGON'], 4, + gl.INVALID_ENUM, "gl.DrawArrays with POLYGON should return INVALID_ENUM"); +} + +init(); +var successfullyParsed = true; +</script> +<script src="../../js/js-test-post.js"></script> + +</body> +</html> diff --git a/dom/canvas/test/webgl-conf/checkout/conformance/rendering/gl-drawelements.html b/dom/canvas/test/webgl-conf/checkout/conformance/rendering/gl-drawelements.html new file mode 100644 index 000000000..5c9a409f9 --- /dev/null +++ b/dom/canvas/test/webgl-conf/checkout/conformance/rendering/gl-drawelements.html @@ -0,0 +1,128 @@ +<!-- + +/* +** Copyright (c) 2012 The Khronos Group Inc. +** +** Permission is hereby granted, free of charge, to any person obtaining a +** copy of this software and/or associated documentation files (the +** "Materials"), to deal in the Materials without restriction, including +** without limitation the rights to use, copy, modify, merge, publish, +** distribute, sublicense, and/or sell copies of the Materials, and to +** permit persons to whom the Materials are furnished to do so, subject to +** the following conditions: +** +** The above copyright notice and this permission notice shall be included +** in all copies or substantial portions of the Materials. +** +** THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +** EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +** MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +** IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +** CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +** TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +** MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. +*/ + +--> + +<!DOCTYPE html> +<html> +<head> +<meta charset="utf-8"> +<title>WebGL drawElements Test</title> +<link rel="stylesheet" href="../../resources/js-test-style.css"/> +<script src="../../js/desktop-gl-constants.js"></script> +<script src="../../js/js-test-pre.js"></script> +<script src="../../js/webgl-test-utils.js"> </script> +</head> +<body> +<canvas id="example" width="50" height="50"></canvas> +<div id="description"></div> +<div id="console"></div> +<script id="vshader" type="x-shader/x-vertex"> +attribute vec4 vPosition; +void main() +{ + gl_Position = vPosition; +} +</script> + +<script id="fshader" type="x-shader/x-fragment"> +void main() +{ + gl_FragColor = vec4(1.0,0.0,0.0,1.0); +} +</script> + +<script> +"use strict"; +function init() +{ + description(document.title); + + function checkDrawElements(mode, count, type, expect, msg) { + gl.clear(gl.COLOR_BUFFER_BIT | gl.DEPTH_BUFFER_BIT); + gl.drawElements(mode, count, type, 0); + wtu.glErrorShouldBe(gl, expect, msg); + } + + var wtu = WebGLTestUtils; + var gl = wtu.create3DContext("example"); + var program = wtu.setupProgram(gl, ["vshader", "fshader"], ["vPosition"]); + + var vertexObject = gl.createBuffer(); + gl.bindBuffer(gl.ARRAY_BUFFER, vertexObject); + gl.bufferData(gl.ARRAY_BUFFER, new Float32Array([ 0,0.5,0, -0.5,-0.5,0, 0.5,-0.5,0 ]), gl.STATIC_DRAW); + gl.enableVertexAttribArray(0); + + checkDrawElements(gl.TRIANGLES, 3, gl.UNSIGNED_SHORT, + gl.INVALID_OPERATION, "gl.DrawElements with no buffer attached to VAO should return INVALID_OPERATION"); + + gl.vertexAttribPointer(0, 3, gl.FLOAT, false, 0, 0); + + var vertexObject = gl.createBuffer(); + gl.bindBuffer(gl.ELEMENT_ARRAY_BUFFER, vertexObject); + gl.bufferData(gl.ELEMENT_ARRAY_BUFFER, new Uint16Array([ 0, 1, 2]), gl.STATIC_DRAW); + + checkDrawElements(gl.TRIANGLES, 3, gl.UNSIGNED_SHORT, + gl.NO_ERROR, "can call gl.DrawElements with UNSIGNED_SHORT"); + + var vertexObject = gl.createBuffer(); + gl.bindBuffer(gl.ELEMENT_ARRAY_BUFFER, vertexObject); + gl.bufferData(gl.ELEMENT_ARRAY_BUFFER, new Uint8Array([ 0, 1, 2, 0]), gl.STATIC_DRAW); + + checkDrawElements( + gl.TRIANGLES, 3, gl.UNSIGNED_BYTE, + gl.NO_ERROR, "can call gl.DrawElements with UNSIGNED_BYTE"); + checkDrawElements( + desktopGL['QUAD_STRIP'], 4, gl.UNSIGNED_BYTE, + gl.INVALID_ENUM, "gl.DrawElements with QUAD_STRIP should return INVALID_ENUM"); + checkDrawElements( + desktopGL['QUADS'], 4, gl.UNSIGNED_BYTE, + gl.INVALID_ENUM, "gl.DrawElements with QUADS should return INVALID_ENUM"); + checkDrawElements( + desktopGL['POLYGON'], 4, gl.UNSIGNED_BYTE, + gl.INVALID_ENUM, "gl.DrawElements with POLYGON should return INVALID_ENUM"); + + var vertexObject = gl.createBuffer(); + gl.bindBuffer(gl.ELEMENT_ARRAY_BUFFER, vertexObject); + gl.bufferData(gl.ELEMENT_ARRAY_BUFFER, new Uint32Array([ 0, 1, 2]), gl.STATIC_DRAW); + checkDrawElements( + gl.TRIANGLES, 3, gl.UNSIGNED_INT, + wtu.getDefault3DContextVersion() > 1 ? gl.NO_ERROR : gl.INVALID_ENUM, + "gl.DrawElements should return INVALID_ENUM with UNSIGNED_INT"); + checkDrawElements( + gl.TRIANGLES, 3, gl.FLOAT, + gl.INVALID_ENUM, "gl.DrawElements should return INVALID_ENUM with FLOAT"); + checkDrawElements( + gl.TRIANGLES, 3, gl.SHORT, + gl.INVALID_ENUM, "gl.DrawElements should return INVALID_ENUM with SHORT"); +} + +init(); +var successfullyParsed = true; +</script> +<script src="../../js/js-test-post.js"></script> + +</body> +</html> diff --git a/dom/canvas/test/webgl-conf/checkout/conformance/rendering/gl-scissor-canvas-dimensions.html b/dom/canvas/test/webgl-conf/checkout/conformance/rendering/gl-scissor-canvas-dimensions.html new file mode 100644 index 000000000..76f2abf64 --- /dev/null +++ b/dom/canvas/test/webgl-conf/checkout/conformance/rendering/gl-scissor-canvas-dimensions.html @@ -0,0 +1,99 @@ +<!-- + +/* +** Copyright (c) 2014 The Khronos Group Inc. +** +** Permission is hereby granted, free of charge, to any person obtaining a +** copy of this software and/or associated documentation files (the +** "Materials"), to deal in the Materials without restriction, including +** without limitation the rights to use, copy, modify, merge, publish, +** distribute, sublicense, and/or sell copies of the Materials, and to +** permit persons to whom the Materials are furnished to do so, subject to +** the following conditions: +** +** The above copyright notice and this permission notice shall be included +** in all copies or substantial portions of the Materials. +** +** THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +** EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +** MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +** IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +** CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +** TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +** MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. +*/ + +--> + +<!DOCTYPE html> +<html> +<head> +<meta charset="utf-8"> +<title>WebGL Scissor Canvas Dimensions Test</title> +<link rel="stylesheet" href="../../resources/js-test-style.css"/> +<script src="../../js/js-test-pre.js"></script> +<script src="../../js/webgl-test-utils.js"></script> +<style> +canvas { + border: 1px solid #000; + width: 64px; + height: 64px; +} +</style> +</head> +<body> +<canvas id="canvas1" width="16" height="16"> </canvas> +<canvas id="canvas2" width="16" height="16"> </canvas> +<div id="description"></div> +<div id="console"></div> +<script> +"use strict"; +description("Check that scissoring is initially disabled and that the scissor rect does not change when canvas size changes."); + +var wtu = WebGLTestUtils; + +function testInit(canvas, attribs) { + var gl = wtu.create3DContext(canvas, attribs); + if (!gl) { + testFailed("context does not exist"); + return; + } + debug("Testing that scissor test is initially disabled"); + // Setting the scissor rect should have no effect on drawing. + gl.scissor(0, 0, 1, 1); + gl.clearColor(0, 1, 0, 1); + gl.clear(gl.COLOR_BUFFER_BIT); + wtu.glErrorShouldBe(gl, gl.NO_ERROR, "there should be no errors"); + wtu.checkCanvasRect(gl, 0, 0, canvas.width, canvas.height, [0, 255, 0, 255], "whole canvas should be green"); +} + +function testCanvasSizeChange(canvas, attribs) { + var gl = wtu.create3DContext(canvas, attribs); + if (!gl) { + testFailed("context does not exist"); + return; + } + debug("Testing that scissor rect dimensions do not change if the canvas is resized."); + canvas.width = 32; + canvas.height = 32; + gl.viewport(0, 0, 32, 32); + gl.enable(gl.SCISSOR_TEST); + gl.clearColor(0, 1, 0, 1); + gl.clear(gl.COLOR_BUFFER_BIT); + wtu.glErrorShouldBe(gl, gl.NO_ERROR, "there should be no errors"); + wtu.checkCanvasRect(gl, 0, 0, 16, 16, [0, 255, 0, 255], "area inside scissor should be green"); + wtu.checkCanvasRect(gl, 0, 16, 32, 16, [0, 0, 0, 0], "area outside scissor should be black"); + wtu.checkCanvasRect(gl, 16, 0, 16, 16, [0, 0, 0, 0], "area outside scissor should be black"); +} + +testInit(document.getElementById("canvas1"), {antialias: false}); +debug(""); +testCanvasSizeChange(document.getElementById("canvas2"), {antialias: false}); + +var successfullyParsed = true; + +</script> +<script src="../../js/js-test-post.js"></script> + +</body> +</html> diff --git a/dom/canvas/test/webgl-conf/checkout/conformance/rendering/gl-scissor-fbo-test.html b/dom/canvas/test/webgl-conf/checkout/conformance/rendering/gl-scissor-fbo-test.html new file mode 100644 index 000000000..b9d46b728 --- /dev/null +++ b/dom/canvas/test/webgl-conf/checkout/conformance/rendering/gl-scissor-fbo-test.html @@ -0,0 +1,131 @@ +<!-- + +/* +** Copyright (c) 2012 The Khronos Group Inc. +** +** Permission is hereby granted, free of charge, to any person obtaining a +** copy of this software and/or associated documentation files (the +** "Materials"), to deal in the Materials without restriction, including +** without limitation the rights to use, copy, modify, merge, publish, +** distribute, sublicense, and/or sell copies of the Materials, and to +** permit persons to whom the Materials are furnished to do so, subject to +** the following conditions: +** +** The above copyright notice and this permission notice shall be included +** in all copies or substantial portions of the Materials. +** +** THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +** EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +** MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +** IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +** CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +** TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +** MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. +*/ + +--> + +<!DOCTYPE html> +<html> +<head> +<meta charset="utf-8"> +<title>WebGL Scissor FBO Test</title> +<link rel="stylesheet" href="../../resources/js-test-style.css"/> +<script src="../../js/js-test-pre.js"></script> +<script src="../../js/webgl-test-utils.js"></script> +</head> +<body> +<canvas id="canvas" width="16" height="16" style="width: 40px; height: 40px;"> </canvas> +<div id="description"></div> +<div id="console"></div> +<script> +"use strict"; +description("Checks the scissor does not change when switching framebuffers."); + +var wtu = WebGLTestUtils; + +function makeFramebuffer(width, height) { + var tex = gl.createTexture(); + gl.bindTexture(gl.TEXTURE_2D, tex); + gl.texImage2D(gl.TEXTURE_2D, 0, gl.RGBA, width, height, 0, gl.RGBA, gl.UNSIGNED_BYTE, null); + gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_WRAP_S, gl.CLAMP_TO_EDGE); + gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_WRAP_T, gl.CLAMP_TO_EDGE); + gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_MIN_FILTER, gl.NEAREST); + gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_MAG_FILTER, gl.NEAREST); + var fb = gl.createFramebuffer(); + gl.bindFramebuffer(gl.FRAMEBUFFER, fb); + gl.framebufferTexture2D(gl.FRAMEBUFFER, gl.COLOR_ATTACHMENT0, gl.TEXTURE_2D, tex, 0); + shouldBe('gl.checkFramebufferStatus(gl.FRAMEBUFFER)', 'gl.FRAMEBUFFER_COMPLETE'); + gl.bindFramebuffer(gl.FRAMEBUFFER, null); + return fb; +} + +function checkCanvasRect(x, y, width, height, color, msg) { + debug("checking: " + x + ", " + y + ", " + width + ", " + height); + wtu.checkCanvasRect(gl, x, y, width, height, color, msg); +} + +var gl = wtu.create3DContext("canvas", {antialias: false}); +if (!gl) { + testFailed("context does not exist"); +} else { + testPassed("context exists"); + + var fb8x8 = makeFramebuffer(8, 8); + var fb32x32 = makeFramebuffer(32, 32); + + var testScissor = function(scissorX, scissorY, scissorWidth, scissorHeight, msg) { + debug(""); + debug(msg); + + var test = function(fb, size) { + debug(""); + debug("checking size: " + size); + gl.bindFramebuffer(gl.FRAMEBUFFER, fb); + gl.clearColor(0, 1, 0, 1); + gl.clear(gl.COLOR_BUFFER_BIT); + var scissorRight = Math.min(scissorX + scissorWidth, size); + var scissorTop = Math.min(scissorY + scissorHeight, size); + var scWidth = scissorRight - scissorX; + var scHeight = scissorTop - scissorY; + var rightWidth = Math.min(size - scissorRight, 0); + var topHeight = Math.max(size - scissorTop, 0); + checkCanvasRect(scissorX, scissorY, scWidth, scHeight, [0, 255, 0, 255], "should be green"); + checkCanvasRect(0, 0, size, scissorY, [255, 0, 0, 255], "should be red"); + checkCanvasRect(0, scissorTop, size, topHeight, [255, 0, 0, 255], "should be red"); + checkCanvasRect(0, 0, scissorX, size, [255, 0, 0, 255], "should be red"); + checkCanvasRect(scissorRight, 0, scissorX, rightWidth, [255, 0, 0, 255], "should be red"); + }; + + gl.disable(gl.SCISSOR_TEST); + gl.clearColor(1, 0, 0, 1); + gl.bindFramebuffer(gl.FRAMEBUFFER, null); + gl.clear(gl.COLOR_BUFFER_BIT); + gl.bindFramebuffer(gl.FRAMEBUFFER, fb8x8); + gl.clear(gl.COLOR_BUFFER_BIT); + gl.bindFramebuffer(gl.FRAMEBUFFER, fb32x32); + gl.clear(gl.COLOR_BUFFER_BIT); + + gl.bindFramebuffer(gl.FRAMEBUFFER, fb32x32); + gl.enable(gl.SCISSOR_TEST); + gl.scissor(scissorX, scissorY, scissorWidth, scissorHeight); + test(null, 16); + test(fb8x8, 8); + test(fb32x32, 32); + test(null, 16); + }; + + testScissor(2, 4, 12, 10, "test scissor in middle"); + testScissor(0, 0, 12, 10, "test scissor at 0,0"); + testScissor(0, 0, 16, 16, "test scissor with size that matches drawingbuffer"); + + wtu.glErrorShouldBe(gl, gl.NO_ERROR, "there should be no errors"); +} + +debug(""); +var successfullyParsed = true; +</script> +<script src="../../js/js-test-post.js"></script> + +</body> +</html> diff --git a/dom/canvas/test/webgl-conf/checkout/conformance/rendering/gl-scissor-test.html b/dom/canvas/test/webgl-conf/checkout/conformance/rendering/gl-scissor-test.html new file mode 100644 index 000000000..b56463199 --- /dev/null +++ b/dom/canvas/test/webgl-conf/checkout/conformance/rendering/gl-scissor-test.html @@ -0,0 +1,116 @@ +<!-- + +/* +** Copyright (c) 2012 The Khronos Group Inc. +** +** Permission is hereby granted, free of charge, to any person obtaining a +** copy of this software and/or associated documentation files (the +** "Materials"), to deal in the Materials without restriction, including +** without limitation the rights to use, copy, modify, merge, publish, +** distribute, sublicense, and/or sell copies of the Materials, and to +** permit persons to whom the Materials are furnished to do so, subject to +** the following conditions: +** +** The above copyright notice and this permission notice shall be included +** in all copies or substantial portions of the Materials. +** +** THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +** EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +** MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +** IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +** CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +** TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +** MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. +*/ + +--> + +<!DOCTYPE html> +<html> +<head> +<meta charset="utf-8"> +<title>WebGL Scissor Test</title> +<link rel="stylesheet" href="../../resources/js-test-style.css"/> +<script src="../../js/js-test-pre.js"></script> +<script src="../../js/webgl-test-utils.js"></script> +<style> +canvas { + border: 1px solid #000; + width: 64px; + height: 64px; +} +</style> +</head> +<body> +<canvas id="canvas1" width="16" height="16"> </canvas> +<canvas id="canvas2" width="16" height="16"> </canvas> +<div id="description"></div> +<div id="console"></div> +<script> +"use strict"; +description("Check if glScissor setting works."); + +var wtu = WebGLTestUtils; + +function test(canvas, attribs) { + var gl = wtu.create3DContext(canvas, attribs); + + function test(func) { + gl.disable(gl.SCISSOR_TEST); + gl.clearColor(0,0,0,0); + gl.clear(gl.COLOR_BUFFER_BIT); + gl.enable(gl.SCISSOR_TEST); + + var size = 16; + for (var ii = 0; ii < size; ++ii) { + // clear a portion of the WebGL drawing buffer + gl.scissor(ii, ii, 1, 1); + func(); + } + + for (var ii = 0; ii < size; ++ii) { + wtu.checkCanvasRect(gl, 0, ii, ii, 1, [0, 0, 0, 0], "should be black"); + wtu.checkCanvasRect(gl, ii, ii, 1, 1, [0, 255, 0, 255], "should be green"); + wtu.checkCanvasRect(gl, ii + 1, ii, size - ii - 1, 1, [0, 0, 0, 0], "should be black"); + } + } + + if (!gl) { + testFailed("context does not exist"); + } else { + testPassed("context exists"); + + debug(""); + debug("test with clear"); + test(function() { + gl.clearColor(0, 1, 0, 1); + gl.clear(gl.COLOR_BUFFER_BIT); + }); + + wtu.setupColorQuad(gl); + + debug(""); + debug("test with draw"); + test(function() { + wtu.drawFloatColorQuad(gl, [0, 1, 0, 1]); + }); + + wtu.glErrorShouldBe(gl, gl.NO_ERROR, "there should be no errors"); + } +} + +debug("test antialias: false"); +test(document.getElementById("canvas1"), {antialias: false}); + +debug(""); +debug("test antialias: true"); +test(document.getElementById("canvas2"), {antialias: true}); + +debug(""); +var successfullyParsed = true; + +</script> +<script src="../../js/js-test-post.js"></script> + +</body> +</html> diff --git a/dom/canvas/test/webgl-conf/checkout/conformance/rendering/gl-viewport-test-2.html b/dom/canvas/test/webgl-conf/checkout/conformance/rendering/gl-viewport-test-2.html new file mode 100644 index 000000000..61a026565 --- /dev/null +++ b/dom/canvas/test/webgl-conf/checkout/conformance/rendering/gl-viewport-test-2.html @@ -0,0 +1,76 @@ +<!-- + +/* +** Copyright (c) 2012 The Khronos Group Inc. +** +** Permission is hereby granted, free of charge, to any person obtaining a +** copy of this software and/or associated documentation files (the +** "Materials"), to deal in the Materials without restriction, including +** without limitation the rights to use, copy, modify, merge, publish, +** distribute, sublicense, and/or sell copies of the Materials, and to +** permit persons to whom the Materials are furnished to do so, subject to +** the following conditions: +** +** The above copyright notice and this permission notice shall be included +** in all copies or substantial portions of the Materials. +** +** THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +** EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +** MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +** IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +** CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +** TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +** MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. +*/ + +--> + +<!DOCTYPE html> +<html> +<head> +<meta charset="utf-8"> +<title>WebGL Viewport Test</title> +<link rel="stylesheet" href="../../resources/js-test-style.css"/> +<script src="../../js/js-test-pre.js"></script> +<script src="../../js/webgl-test-utils.js"></script> +</head> +<body> +<canvas id="canvas1" width="128" height="128"> </canvas> +<div id="description"></div> +<div id="console"></div> +<script> +"use strict"; +description(); +var wtu = WebGLTestUtils; + +function test(canvas, attribs) { + var gl = wtu.create3DContext(canvas, attribs); + + if (!gl) { + testFailed("context does not exist"); + } else { + testPassed("context exists"); + + var program = wtu.setupColorQuad(gl); + var w = gl.canvas.width; + var h = gl.canvas.height; + + gl.viewport(0, 0, w/2, h/2); + + wtu.drawFloatColorQuad(gl, [1.0, 0.0, 0.0, 1.0]); + + debug(""); + wtu.glErrorShouldBe(gl, gl.NO_ERROR, "there should be no errors"); + } +} + +test(document.getElementById("canvas1"), {antialias: false}); + +debug(""); +var successfullyParsed = true; + +</script> +<script src="../../js/js-test-post.js"></script> + +</body> +</html> diff --git a/dom/canvas/test/webgl-conf/checkout/conformance/rendering/gl-viewport-test.html b/dom/canvas/test/webgl-conf/checkout/conformance/rendering/gl-viewport-test.html new file mode 100644 index 000000000..b2fff7552 --- /dev/null +++ b/dom/canvas/test/webgl-conf/checkout/conformance/rendering/gl-viewport-test.html @@ -0,0 +1,133 @@ +<!-- + +/* +** Copyright (c) 2012 The Khronos Group Inc. +** +** Permission is hereby granted, free of charge, to any person obtaining a +** copy of this software and/or associated documentation files (the +** "Materials"), to deal in the Materials without restriction, including +** without limitation the rights to use, copy, modify, merge, publish, +** distribute, sublicense, and/or sell copies of the Materials, and to +** permit persons to whom the Materials are furnished to do so, subject to +** the following conditions: +** +** The above copyright notice and this permission notice shall be included +** in all copies or substantial portions of the Materials. +** +** THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +** EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +** MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +** IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +** CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +** TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +** MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. +*/ + +--> + +<!DOCTYPE html> +<html> +<head> +<meta charset="utf-8"> +<title>WebGL Viewport Test</title> +<link rel="stylesheet" href="../../resources/js-test-style.css"/> +<script src="../../js/js-test-pre.js"></script> +<script src="../../js/webgl-test-utils.js"></script> +<style> +canvas { + border: 1px solid #000; +} +</style> +</head> +<body> +<canvas id="canvas1" width="64" height="128"> </canvas> +<canvas id="canvas2" width="64" height="128"> </canvas> +<div id="description"></div> +<div id="console"></div> +<script> +"use strict"; +description(); +var wtu = WebGLTestUtils; + +function test(canvas, attribs) { + var gl = wtu.create3DContext(canvas, attribs); + + if (!gl) { + testFailed("context does not exist"); + } else { + testPassed("context exists"); + + var blue = [0, 0, 255, 255]; + var black = [0, 0, 0, 0]; + + var draw = function(viewportX, viewportY, viewportWidth, viewportHeight) { + gl.viewport(viewportX, viewportY, viewportWidth, viewportHeight); + gl.clear(gl.COLOR_BUFFER_BIT); + wtu.drawUByteColorQuad(gl, blue); + }; + + var drawAndCheck = function(viewportX, viewportY, viewportWidth, viewportHeight) { + var clipSpaceToPixelSpace = function(clip, viewportOffset, viewportSize, max) { + var pixel = viewportSize / 2 * clip + viewportOffset + viewportSize / 2; + return Math.min(max, Math.max(0, pixel)); + }; + + var x1 = clipSpaceToPixelSpace(-0.5, viewportX, viewportWidth, gl.canvas.width); + var x2 = clipSpaceToPixelSpace( 0.5, viewportX, viewportWidth, gl.canvas.width); + var y1 = clipSpaceToPixelSpace(-0.5, viewportY, viewportHeight, gl.canvas.height); + var y2 = clipSpaceToPixelSpace( 0.5, viewportY, viewportHeight, gl.canvas.height); + var width = x2 - x1; + var height = y2 - y1; + + debug("checking viewport: " + viewportX + ", " + viewportY + ", " + viewportWidth + ", " + viewportHeight); + debug("rect: " + x1 + ", " + y1 + ", " + width + ", " + height); + draw(viewportX, viewportY, viewportWidth, viewportHeight); + wtu.checkAreaInAndOut(gl, x1, y1, width, height, blue, black); + }; + + var program = wtu.setupSimpleColorProgram(gl); + wtu.setupQuad(gl, {scale: 0.5}); + + var w = gl.canvas.width; + var h = gl.canvas.height; + + drawAndCheck(0, 0, w, h); + drawAndCheck(0, 0, w/2, h/4); + drawAndCheck(0, 0, w/4, h/2); + drawAndCheck(0, 0, w*2, h*2); + + drawAndCheck(-w, 0, w, h); + drawAndCheck(0, -h, w, h); + drawAndCheck(w, 0, w, h); + drawAndCheck(0, h, w, h); + + drawAndCheck(w/4, h/2, w, h); + drawAndCheck(w/4, h/2, w/2, h/4); + drawAndCheck(w/2, h/4, w/4, h/2); + drawAndCheck(w/2, h/4, w, h*2); + + drawAndCheck(-w, 0, w*2, h); + drawAndCheck(0, -h/4, w/2, h); + drawAndCheck(-w/4, 0, w, h/2); + drawAndCheck(0, -h, w*2, h*2); + + debug(""); + wtu.glErrorShouldBe(gl, gl.NO_ERROR, "there should be no errors"); + } +} + +debug("test antialias: false"); +test(document.getElementById("canvas1"), {antialias: false}); + +debug(""); +debug("test antialias: true"); +test(document.getElementById("canvas2"), {antialias: true}); + +debug(""); +var successfullyParsed = true; + +</script> +<script src="../../js/js-test-post.js"></script> + +</body> +</html> diff --git a/dom/canvas/test/webgl-conf/checkout/conformance/rendering/line-loop-tri-fan.html b/dom/canvas/test/webgl-conf/checkout/conformance/rendering/line-loop-tri-fan.html new file mode 100644 index 000000000..3853afda9 --- /dev/null +++ b/dom/canvas/test/webgl-conf/checkout/conformance/rendering/line-loop-tri-fan.html @@ -0,0 +1,250 @@ +<!-- + +/* +** Copyright (c) 2012 The Khronos Group Inc. +** +** Permission is hereby granted, free of charge, to any person obtaining a +** copy of this software and/or associated documentation files (the +** "Materials"), to deal in the Materials without restriction, including +** without limitation the rights to use, copy, modify, merge, publish, +** distribute, sublicense, and/or sell copies of the Materials, and to +** permit persons to whom the Materials are furnished to do so, subject to +** the following conditions: +** +** The above copyright notice and this permission notice shall be included +** in all copies or substantial portions of the Materials. +** +** THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +** EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +** MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +** IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +** CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +** TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +** MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. +*/ + +--> + +<!DOCTYPE html> +<html> +<head> +<meta charset="utf-8"> +<link rel="stylesheet" href="../../resources/js-test-style.css"/> +<script src="../../js/js-test-pre.js"></script> +<script src="../../js/webgl-test-utils.js"></script> +<script id="vshader" type="x-shader/x-vertex"> +attribute vec2 pos; + +void main() +{ + gl_Position = vec4(pos, 0, 1); +} +</script> + +<script id="fshader" type="x-shader/x-fragment"> +precision mediump float; + +void main() +{ + gl_FragColor = vec4(0, 1, 0, 1); +} +</script> + +<script> +"use strict"; +var wtu = WebGLTestUtils; + +// Check a single 32-bit RGBA pixel. +function checkPixel(buf, index, correct) { + for (var i = 0; i < 4; ++i) { + if (buf[index + i] != correct[i]) { + return false; + } + } + return true; +} + +// Check the line loop by reading the pixels and making sure just the edge +// pixels are green and the rest are black. +function checkLineLoop(gl, w) { + var buf = new Uint8Array(w * w * 4); + gl.readPixels(0, 0, w, w, gl.RGBA, gl.UNSIGNED_BYTE, buf); + var green = [0,255,0,255]; + var black = [0,0,0,255]; + var isCorrect = true; + for (var j = 0; j < w * w * 4; j += 4) { + var correct = black; + if (j < w * 4 || j > w * (w - 1) * 4 || j % (w * 4) == 0 || j % (w * 4) == (w - 1) * 4) { + correct = green; + } + // ignore corner pixels + if ((j == 0) || (j == 4*(w-1)) || (j == 4*w*(w-1)) || (j== 4*(w*w - 1))) { + continue; + } + if (!checkPixel(buf, j, correct)) { + isCorrect = false; + break; + } + } + if (isCorrect) { + testPassed("Line loop was drawn correctly."); + } else { + testFailed("Line loop was drawn incorrectly."); + } +} + +// Check the tri fan by reading the pixels and making sure they are all green. +function checkTriFan(gl, w) { + var buf = new Uint8Array(w * w * 4); + gl.readPixels(0, 0, w, w, gl.RGBA, gl.UNSIGNED_BYTE, buf); + var filled = true; + for (var j = 0; j < w * w * 4; j += 4) { + if (!checkPixel(buf, j, [0,255,0,255])) { + filled = false; + break; + } + } + if (filled) { + testPassed("Triangle fan was drawn correctly."); + } else { + testFailed("Triangle fan was drawn incorrectly."); + } +} + +function runTest() { + var gl = wtu.create3DContext('testbed', { antialias: false }); + if (!gl) { + testFailed('could not create context'); + return; + } + gl.clearColor(0, 0, 0, 1); + var program = wtu.setupProgram(gl, ['vshader', 'fshader'], ['pos']) + var w = document.getElementById('testbed').width; + + gl.enableVertexAttribArray(0); + + //---------- LINE_LOOP---------- + var d = 1/w; + var vertices = new Float32Array([-1+d, -1+d, 1-d, -1+d, 1-d, 1-d, -1+d, 1-d]); + var vertBuf = gl.createBuffer(); + gl.bindBuffer(gl.ARRAY_BUFFER, vertBuf); + gl.bufferData(gl.ARRAY_BUFFER, vertices, gl.STATIC_DRAW); + gl.vertexAttribPointer(0, 2, gl.FLOAT, false, 0, 0); + var indBuf = gl.createBuffer(); + var indices = new Uint16Array([0, 1, 2, 3]); + gl.bindBuffer(gl.ELEMENT_ARRAY_BUFFER, indBuf); + gl.bufferData(gl.ELEMENT_ARRAY_BUFFER, indices, gl.STATIC_DRAW); + + debug('Draw a square using a line loop and verify that it draws all four sides and nothing else.'); + gl.clear(gl.COLOR_BUFFER_BIT | gl.DEPTH_BUFFER_BIT); + gl.drawArrays(gl.LINE_LOOP, 0, vertices.length / 2); + checkLineLoop(gl, w); + + debug('Draw a square using an indexed line loop and verify that it draws all four sides and nothing else.'); + gl.clear(gl.COLOR_BUFFER_BIT | gl.DEPTH_BUFFER_BIT); + gl.drawElements(gl.LINE_LOOP, indices.length, gl.UNSIGNED_SHORT, 0); + checkLineLoop(gl, w); + + vertices = new Float32Array([0, 0, 0, 0, 0, 0, -1+d, -1+d, 1-d, -1+d, 1-d, 1-d, -1+d, 1-d]); + vertBuf = gl.createBuffer(); + gl.bindBuffer(gl.ARRAY_BUFFER, vertBuf); + gl.bufferData(gl.ARRAY_BUFFER, vertices, gl.STATIC_DRAW); + gl.vertexAttribPointer(0, 2, gl.FLOAT, false, 0, 0); + indBuf = gl.createBuffer(); + indices = new Uint16Array([0, 1, 2, 3, 4, 5, 6]); + gl.bindBuffer(gl.ELEMENT_ARRAY_BUFFER, indBuf); + gl.bufferData(gl.ELEMENT_ARRAY_BUFFER, indices, gl.STATIC_DRAW); + + debug('Draw a square using a line loop with a vertex buffer offset and verify that it draws all four sides and nothing else.'); + gl.clear(gl.COLOR_BUFFER_BIT | gl.DEPTH_BUFFER_BIT); + gl.drawArrays(gl.LINE_LOOP, 3, vertices.length / 2 - 3); + checkLineLoop(gl, w); + + debug('Draw a square using an indexed line loop with an index buffer offset and verify that it draws all four sides and nothing else.'); + gl.clear(gl.COLOR_BUFFER_BIT | gl.DEPTH_BUFFER_BIT); + gl.drawElements(gl.LINE_LOOP, indices.length - 3, gl.UNSIGNED_SHORT, 3 * 2); + checkLineLoop(gl, w); + + //---------- LINE_LOOP UBYTE ---------- + var degenVerts = new Array(252 * 2); + for (var j = 0; j < 252 * 2; ++j) { + degenVerts[j] = -1+d; + } + degenVerts = degenVerts.concat([-1+d, -1+d, 1-d, -1+d, 1-d, 1-d, -1+d, 1-d]); + vertices = new Float32Array(degenVerts); + vertBuf = gl.createBuffer(); + gl.bindBuffer(gl.ARRAY_BUFFER, vertBuf); + gl.bufferData(gl.ARRAY_BUFFER, vertices, gl.STATIC_DRAW); + gl.vertexAttribPointer(0, 2, gl.FLOAT, false, 0, 0); + indBuf = gl.createBuffer(); + var degenInd = new Array(252); + for (var j = 0; j < 252; ++j) { + degenInd[j] = j; + } + degenInd = degenInd.concat([252, 253, 254, 255]); + indices = new Uint16Array(degenInd); + gl.bindBuffer(gl.ELEMENT_ARRAY_BUFFER, indBuf); + gl.bufferData(gl.ELEMENT_ARRAY_BUFFER, indices, gl.STATIC_DRAW); + + debug('Draw a square using an ubyte indexed line loop with 256 indices and verify that it draws all four sides and nothing else.'); + gl.clear(gl.COLOR_BUFFER_BIT | gl.DEPTH_BUFFER_BIT); + gl.drawElements(gl.LINE_LOOP, indices.length, gl.UNSIGNED_SHORT, 0); + checkLineLoop(gl, w); + + //---------- TRIANGLE_FAN ---------- + vertices = new Float32Array([0, 0, -1, -1, 1, -1, 1, 1, -1, 1, -1, -1]); + vertBuf = gl.createBuffer(); + gl.bindBuffer(gl.ARRAY_BUFFER, vertBuf); + gl.bufferData(gl.ARRAY_BUFFER, vertices, gl.STATIC_DRAW); + gl.vertexAttribPointer(0, 2, gl.FLOAT, false, 0, 0); + indices = new Uint16Array([0,1,2,3,4,5]); + indBuf = gl.createBuffer(); + gl.bindBuffer(gl.ELEMENT_ARRAY_BUFFER, indBuf); + gl.bufferData(gl.ELEMENT_ARRAY_BUFFER, indices, gl.STATIC_DRAW); + + debug('Draw a filled square using a triangle fan and verify that it fills the entire canvas.'); + gl.clear(gl.COLOR_BUFFER_BIT | gl.DEPTH_BUFFER_BIT); + gl.drawArrays(gl.TRIANGLE_FAN, 0, vertices.length / 2); + checkTriFan(gl, w); + + debug('Draw a filled square using an indexed triangle fan and verify that it fills the entire canvas.'); + gl.clear(gl.COLOR_BUFFER_BIT | gl.DEPTH_BUFFER_BIT); + gl.drawElements(gl.TRIANGLE_FAN, indices.length, gl.UNSIGNED_SHORT, 0); + checkTriFan(gl, w); + + vertices = new Float32Array([1, 1, 1, 1, 1, 1, 0, 0, -1, -1, 1, -1, 1, 1, -1, 1, -1, -1]); + vertBuf = gl.createBuffer(); + gl.bindBuffer(gl.ARRAY_BUFFER, vertBuf); + gl.bufferData(gl.ARRAY_BUFFER, vertices, gl.STATIC_DRAW); + gl.vertexAttribPointer(0, 2, gl.FLOAT, false, 0, 0); + indices = new Uint16Array([0,1,2,3,4,5,6,7,8]); + indBuf = gl.createBuffer(); + gl.bindBuffer(gl.ELEMENT_ARRAY_BUFFER, indBuf); + gl.bufferData(gl.ELEMENT_ARRAY_BUFFER, indices, gl.STATIC_DRAW); + + debug('Draw a filled square using a triangle fan with a vertex buffer offset and verify that it fills the entire canvas.'); + gl.clear(gl.COLOR_BUFFER_BIT | gl.DEPTH_BUFFER_BIT); + gl.drawArrays(gl.TRIANGLE_FAN, 3, vertices.length / 2 - 3); + checkTriFan(gl, w); + + debug('Draw a filled square using an indexed triangle fan with an index buffer offset and verify that it fills the entire canvas.'); + gl.clear(gl.COLOR_BUFFER_BIT | gl.DEPTH_BUFFER_BIT); + gl.drawElements(gl.TRIANGLE_FAN, indices.length - 3, gl.UNSIGNED_SHORT, 3 * 2); + checkTriFan(gl, w); +} +</script> +</head> +<body> +<canvas id="testbed" width="10" height="10" style="width:50px; height:50px"></canvas> +<div id="description"></div> +<div id="console"></div> +<script> +"use strict"; +description('Verify that LINE_LOOP and TRIANGLE_FAN works correctly.'); +runTest(); +var successfullyParsed = true; +</script> +<script src="../../js/js-test-post.js"></script> + +</body> +</html> diff --git a/dom/canvas/test/webgl-conf/checkout/conformance/rendering/many-draw-calls.html b/dom/canvas/test/webgl-conf/checkout/conformance/rendering/many-draw-calls.html new file mode 100644 index 000000000..df7e7be46 --- /dev/null +++ b/dom/canvas/test/webgl-conf/checkout/conformance/rendering/many-draw-calls.html @@ -0,0 +1,159 @@ +<!-- + +/* +** Copyright (c) 2013 The Khronos Group Inc. +** +** Permission is hereby granted, free of charge, to any person obtaining a +** copy of this software and/or associated documentation files (the +** "Materials"), to deal in the Materials without restriction, including +** without limitation the rights to use, copy, modify, merge, publish, +** distribute, sublicense, and/or sell copies of the Materials, and to +** permit persons to whom the Materials are furnished to do so, subject to +** the following conditions: +** +** The above copyright notice and this permission notice shall be included +** in all copies or substantial portions of the Materials. +** +** THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +** EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +** MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +** IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +** CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +** TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +** MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. +*/ + +--> + +<!DOCTYPE html> +<html> +<head> +<meta charset="utf-8"> +<link rel="stylesheet" href="../../resources/js-test-style.css"/> +<script src="../../js/js-test-pre.js"></script> +<script src="../../js/webgl-test-utils.js"></script> +</head> +<body> +<script id="vshader" type="x-shader/x-vertex"> +uniform mat4 transformMatrix; +uniform vec3 positionOffset; +attribute vec2 aPosition; +void main() { + gl_Position = transformMatrix * vec4(aPosition, 0.0, 1.0) + vec4(positionOffset, 0.0); +} +</script> +<script id="fshader" type="x-shader/x-fragment"> +void main() { + gl_FragColor = vec4(0.0, 1.0, 0.0, 1.0); +} +</script> +<div id="description"></div> +<canvas id="canvas" width="256" height="256"></canvas> +<div id="console"></div> +<script> +"use strict"; +enableJSTestPreVerboseLogging(); +description("Test many draw calls and uniform updates per frame"); + +debug('Regression test for Chromium <a href="http://crbug.com/320724">Issue 320724</a> and <a href="http://crbug.com/322726">Issue 322726</a>'); +debug(''); + +var contextWasLost = false; + +var wtu = WebGLTestUtils; +var canvas = document.getElementById('canvas'); +var gl = wtu.create3DContext(canvas); +canvas.addEventListener('webglcontextlost', function(event) { contextWasLost = true; }, false); +var program = wtu.setupProgram(gl, ["vshader", "fshader"], [ "aPosition" ]); +if (!program) { + testFailed("failed to create test program"); +} + +gl.useProgram(program); +var vertexObject = gl.createBuffer(); +gl.bindBuffer(gl.ARRAY_BUFFER, vertexObject); +gl.enableVertexAttribArray(0); + +// Initialize vertices +gl.bufferData(gl.ARRAY_BUFFER, new Float32Array([ + -1.0, 1.0, + 1.0, -1.0, + 1.0, 1.0, + -1.0, 1.0, + -1.0, -1.0, + 1.0, -1.0 ]), gl.STATIC_DRAW); +gl.vertexAttribPointer(0, 2, gl.FLOAT, false, 0, 0); + +gl.clearColor(0.3, 0.3, 0.3, 1.0); + +// Initialize uniforms +var transformLoc = gl.getUniformLocation(program, 'transformMatrix'); +var offsetLoc = gl.getUniformLocation(program, 'positionOffset'); + +// This many draw calls appear to be necessary to trigger the original bug reliably. +var tilesPerSide = 100; +var numDrawsThisFrame = 0; + +var doNextDraw = function() { + // Sometimes, the original bug can't be caught cooperatively, and it + // causes the entire tab to hang irrevocably. + if (contextWasLost) { + testFailed("WebGL context was lost while running the test"); + finishTest(); + return; + } + + var totalDraws = tilesPerSide * tilesPerSide; + if (numDrawsThisFrame >= totalDraws) { + testPassed("All draw calls completed successfully"); + finishTest(); + return; + } + + numDrawsThisFrame += tilesPerSide; + + gl.clear(gl.COLOR_BUFFER_BIT); + + var transformMatrix = new Float32Array(16); + transformMatrix[15] = 1.0; + var scaleFactor = 1.0 / tilesPerSide; + transformMatrix[0] = scaleFactor; + transformMatrix[5] = scaleFactor; + transformMatrix[10] = scaleFactor; + + var offset = new Float32Array(3); + + var drawsDoneThisFrame = 0; + for (var yy = 0; yy < tilesPerSide; ++yy) { + for (var xx = 0; xx < tilesPerSide; ++xx) { + if (drawsDoneThisFrame >= numDrawsThisFrame) + break; + + gl.uniformMatrix4fv(transformLoc, false, transformMatrix); + + offset[0] = 2.0 * ((0.5 + xx) / tilesPerSide) - 1.0; + offset[1] = 2.0 * ((0.5 + yy) / tilesPerSide) - 1.0; + gl.uniform3f(offsetLoc, offset[0], offset[1], offset[2]); + + gl.drawArrays(gl.TRIANGLES, 0, 6); + ++drawsDoneThisFrame; + } + + if (drawsDoneThisFrame >= numDrawsThisFrame) + break; + } + + var iterations = numDrawsThisFrame / tilesPerSide; + if (iterations % 10 === 0) { + // Needed to avoid test timeout within the harness on some slower platforms + testPassed("Completed " + iterations + " iterations"); + } + + wtu.requestAnimFrame(doNextDraw); +} + +wtu.requestAnimFrame(doNextDraw); +var successfullyParsed = true; +</script> +</body> +</html> diff --git a/dom/canvas/test/webgl-conf/checkout/conformance/rendering/more-than-65536-indices.html b/dom/canvas/test/webgl-conf/checkout/conformance/rendering/more-than-65536-indices.html new file mode 100644 index 000000000..38744ce5d --- /dev/null +++ b/dom/canvas/test/webgl-conf/checkout/conformance/rendering/more-than-65536-indices.html @@ -0,0 +1,144 @@ +<!-- + +/* +** Copyright (c) 2012 The Khronos Group Inc. +** +** Permission is hereby granted, free of charge, to any person obtaining a +** copy of this software and/or associated documentation files (the +** "Materials"), to deal in the Materials without restriction, including +** without limitation the rights to use, copy, modify, merge, publish, +** distribute, sublicense, and/or sell copies of the Materials, and to +** permit persons to whom the Materials are furnished to do so, subject to +** the following conditions: +** +** The above copyright notice and this permission notice shall be included +** in all copies or substantial portions of the Materials. +** +** THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +** EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +** MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +** IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +** CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +** TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +** MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. +*/ + +--> + +<!DOCTYPE html> +<html> +<head> +<meta charset="utf-8"> +<title>WebGL More than 65536 indices.</title> +<link rel="stylesheet" href="../../resources/js-test-style.css"/> +<script src="../../js/js-test-pre.js"></script> +<script src="../../js/webgl-test-utils.js"> </script> +</head> +<body> +<canvas id="example" width="1" height="1" style="width: 40px; height: 40px;"></canvas> +<div id="description"></div> +<div id="console"></div> +<script id="vs" type="text/something-not-javascript"> +attribute vec4 vPosition; +attribute vec4 vColor; +varying vec4 color; +void main() { + gl_Position = vPosition; + gl_PointSize = 1.0; + color = vColor; +} +</script> +<script id="fs" type="text/something-not-javascript"> +precision mediump float; +varying vec4 color; +void main() { + gl_FragColor = color; +} +</script> +<script> +"use strict"; +description("checks that rendering with more than 65536 indices works."); +var wtu = WebGLTestUtils; +var gl = wtu.create3DContext("example"); +var program = wtu.setupProgram(gl, ["vs", "fs"], ["vPosition", "vColor"]); +var bufferObjects = wtu.setupUnitQuad(gl, 0, 1); + +gl.bindBuffer(gl.ARRAY_BUFFER, bufferObjects[0]); +gl.bufferData(gl.ARRAY_BUFFER, new Float32Array([ + -1, 1, + 1, 1, + -1, -1, + 1, -1, + -1, 1, + 1, 1, + -1, -1, + 1, -1]), gl.STATIC_DRAW); +gl.vertexAttribPointer(0, 2, gl.FLOAT, false, 0, 0); +gl.bindBuffer(gl.ARRAY_BUFFER, bufferObjects[1]); +gl.bufferData(gl.ARRAY_BUFFER, new Uint8Array([ + 255, 0, 0, 255, + 255, 0, 0, 255, + 255, 0, 0, 255, + 255, 0, 0, 255, + 0, 255, 0, 255, + 0, 255, 0, 255, + 0, 255, 0, 255, + 0, 255, 0, 255]), gl.STATIC_DRAW); +gl.vertexAttribPointer(1, 4, gl.UNSIGNED_BYTE, true, 0, 0); +wtu.glErrorShouldBe(gl, gl.NO_ERROR, "after program setup"); + +wtu.glErrorShouldBe(gl, gl.NO_ERROR, "after creating texture"); +var numQuads = Math.floor(65536 / 6) + 4; +var numPoints = numQuads * 6; +debug("numQuads: " + numQuads); +debug("numPoints: " + numPoints); +var indexBuf = new ArrayBuffer(numPoints); +var indices = new Uint8Array(indexBuf); +var indexBuffer = gl.createBuffer(); +gl.bindBuffer(gl.ELEMENT_ARRAY_BUFFER, indexBuffer); +wtu.glErrorShouldBe(gl, gl.NO_ERROR, "after setting up indices"); + +var modes = [ + {mode: 'POINTS', offsets: [0, 1, 2, 3, 2, 1], skip: 0}, + {mode: 'LINES', offsets: [0, 1, 2, 3, 2, 1], skip: 0}, + {mode: 'LINE_LOOP', offsets: [0, 1, 2, 3, 2, 1], skip: 1}, + {mode: 'LINE_STRIP', offsets: [0, 1, 2, 3, 2, 1], skip: 0}, + {mode: 'TRIANGLES', offsets: [0, 1, 2, 3, 2, 1], skip: 0}, + {mode: 'TRIANGLE_STRIP', offsets: [0, 1, 2, 3, 2, 1], skip: 0}, + {mode: 'TRIANGLE_FAN', offsets: [0, 1, 3, 2, 2, 1], skip: 1} +]; + +for (var mm = 0; mm < modes.length; ++mm) { + var modeInfo = modes[mm]; + var mode = modeInfo.mode; + var offsets = modeInfo.offsets; + var skip = modeInfo.skip; + + for (var ii = 0; ii < numQuads; ++ii) { + var offset = ii * 6; + var quad = (ii == 0 || ii == (numQuads - 1)) ? 4 : 0; + for (var jj = 0; jj < 6; ++jj) { + indices[offset + jj] = quad + offsets[jj]; + } + } + gl.bufferData(gl.ELEMENT_ARRAY_BUFFER, indices, gl.STATIC_DRAW); + + debug(""); + debug("testing: " + mode); + // Draw without last 6 points. + gl.drawElements(gl[mode], numPoints - (skip + 1) * 6, gl.UNSIGNED_BYTE, skip * 6); + wtu.checkCanvas(gl, [255, 0, 0, 255], "Should be red."); + // Draw with last 6 points. + gl.drawElements(gl[mode], numPoints, gl.UNSIGNED_BYTE, 0); + wtu.checkCanvas(gl, [0, 255, 0, 255], "Should be green."); +} +wtu.glErrorShouldBe(gl, gl.NO_ERROR, "after drawing"); + +var successfullyParsed = true; +</script> +<script src="../../js/js-test-post.js"></script> + +</body> +</html> + + diff --git a/dom/canvas/test/webgl-conf/checkout/conformance/rendering/multisample-corruption.html b/dom/canvas/test/webgl-conf/checkout/conformance/rendering/multisample-corruption.html new file mode 100644 index 000000000..d520c535c --- /dev/null +++ b/dom/canvas/test/webgl-conf/checkout/conformance/rendering/multisample-corruption.html @@ -0,0 +1,60 @@ +<!-- + +/* +** Copyright (c) 2012 The Khronos Group Inc. +** +** Permission is hereby granted, free of charge, to any person obtaining a +** copy of this software and/or associated documentation files (the +** "Materials"), to deal in the Materials without restriction, including +** without limitation the rights to use, copy, modify, merge, publish, +** distribute, sublicense, and/or sell copies of the Materials, and to +** permit persons to whom the Materials are furnished to do so, subject to +** the following conditions: +** +** The above copyright notice and this permission notice shall be included +** in all copies or substantial portions of the Materials. +** +** THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +** EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +** MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +** IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +** CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +** TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +** MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. +*/ + +--> + +<!DOCTYPE html> +<html> +<head> +<meta charset="utf-8"> +<title>WebGL Multisample Renderbuffer Corruption Test</title> +<link rel="stylesheet" href="../../resources/js-test-style.css"/> +<script src="../../js/js-test-pre.js"></script> +<script src="../../js/webgl-test-utils.js"> </script> +<script src="../../js/tests/iterable-test.js"> </script> +</head> +<body> +<canvas id="example" width="2048" height="2048" style="width: 128px; height: 128px;"></canvas> +<div id="description"></div> +<div id="console"></div> +<script> +"use strict"; + +enableJSTestPreVerboseLogging(); +description(document.title); +debug('Regression test for <a href="https://code.google.com/p/chromium/issues/detail?id=137303">Chromium bug 137303</a>'); + +var wtu = WebGLTestUtils; + +var gl = wtu.create3DContext("example", {antialias: true, preserveDrawingBuffer: true}); +var test = IterableTest.createMultisampleCorruptionTest(gl); +var iterations = parseInt(wtu.getUrlOptions().iterations, 10) || 25; +IterableTest.run(test, iterations); + +var successfullyParsed = true; +</script> + +</body> +</html> diff --git a/dom/canvas/test/webgl-conf/checkout/conformance/rendering/negative-one-index.html b/dom/canvas/test/webgl-conf/checkout/conformance/rendering/negative-one-index.html new file mode 100644 index 000000000..f28b6ace8 --- /dev/null +++ b/dom/canvas/test/webgl-conf/checkout/conformance/rendering/negative-one-index.html @@ -0,0 +1,119 @@ +<!-- + +/* +** Copyright (c) 2014 The Khronos Group Inc. +** +** Permission is hereby granted, free of charge, to any person obtaining a +** copy of this software and/or associated documentation files (the +** "Materials"), to deal in the Materials without restriction, including +** without limitation the rights to use, copy, modify, merge, publish, +** distribute, sublicense, and/or sell copies of the Materials, and to +** permit persons to whom the Materials are furnished to do so, subject to +** the following conditions: +** +** The above copyright notice and this permission notice shall be included +** in all copies or substantial portions of the Materials. +** +** THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +** EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +** MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +** IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +** CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +** TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +** MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. +*/ + +--> + +<!DOCTYPE html> +<html> +<head> +<meta charset="utf-8"> +<title>-1 Index Rendering Test</title> +<link rel="stylesheet" href="../../resources/js-test-style.css"/> +<script src="../../js/js-test-pre.js"></script> +<script src="../../js/webgl-test-utils.js"> </script> +</head> +<body> +<canvas id="example" width="50" height="50"> +</canvas> +<div id="description"></div> +<div id="console"></div> +<script id="vshader" type="x-shader/x-vertex"> +attribute vec4 vPosition; +void main() +{ + gl_Position = vPosition; +} +</script> + +<script id="fshader" type="x-shader/x-fragment"> +void main() +{ + gl_FragColor = vec4(0.0,1.0,0.0,1.0); +} +</script> + +<script> +"use strict"; +function init() +{ + description(document.title); + + var wtu = WebGLTestUtils; + var gl = wtu.create3DContext("example"); + var contextVersion = wtu.getDefault3DContextVersion(); + var program = wtu.setupProgram(gl, ["vshader", "fshader"], ["vPosition"]); + + var vertexObject = gl.createBuffer(); + gl.bindBuffer(gl.ARRAY_BUFFER, vertexObject); + var vertexData = new Float32Array(65536 * 3); + vertexData[0 * 3 + 0] = 0.0; + vertexData[0 * 3 + 1] = 0.5; + vertexData[0 * 3 + 2] = 0.0; + vertexData[1 * 3 + 0] = -0.5; + vertexData[1 * 3 + 1] = -0.5; + vertexData[1 * 3 + 2] = 0.0; + vertexData[65535 * 3 + 0] = 0.5; + vertexData[65535 * 3 + 1] = -0.5; + vertexData[65535 * 3 + 2] = 0.0; + gl.bufferData(gl.ARRAY_BUFFER, vertexData, gl.STATIC_DRAW); + gl.enableVertexAttribArray(0); + gl.vertexAttribPointer(0, 3, gl.FLOAT, false, 0, 0); + + var indices = new Uint16Array([0, 1, -1]); + var indexBuffer = gl.createBuffer(); + gl.bindBuffer(gl.ELEMENT_ARRAY_BUFFER, indexBuffer); + gl.bufferData(gl.ELEMENT_ARRAY_BUFFER, indices, gl.STATIC_DRAW); + + gl.clear(gl.COLOR_BUFFER_BIT | gl.DEPTH_BUFFER_BIT); + gl.drawElements(gl.TRIANGLES, 3, gl.UNSIGNED_SHORT, 0); + + if (contextVersion <= 1) { + // This should render a green triangle in the middle of the canvas. + // Some implementations may incorrectly interpret the -1 index as + // a primitive restart and not render anything. + + // Test several locations + // First line should be all black + wtu.checkCanvasRect(gl, 0, 0, 50, 1, [0, 0, 0, 0]); + + // Line 15 should be green for at least 10 pixels starting from row 20 + wtu.checkCanvasRect(gl, 20, 15, 10, 1, [0, 255, 0, 255]); + + // Last line should be all black + wtu.checkCanvasRect(gl, 0, 49, 50, 1, [0, 0, 0, 0]); + } else { + // For WebGL 2, PRIMITIVE_RESTART_FIXED_INDEX is always enabled. + // Nothing should be drawn on the canvas. + wtu.checkCanvasRect(gl, 0, 0, 50, 50, [0, 0, 0, 0]); + } +} + +init(); +var successfullyParsed = true; +</script> +<script src="../../js/js-test-post.js"></script> + +</body> +</html> diff --git a/dom/canvas/test/webgl-conf/checkout/conformance/rendering/out-of-bounds-index-buffers.html b/dom/canvas/test/webgl-conf/checkout/conformance/rendering/out-of-bounds-index-buffers.html new file mode 100644 index 000000000..baa5e551b --- /dev/null +++ b/dom/canvas/test/webgl-conf/checkout/conformance/rendering/out-of-bounds-index-buffers.html @@ -0,0 +1,156 @@ +<!-- + +/* +** Copyright (c) 2016 The Khronos Group Inc. +** +** Permission is hereby granted, free of charge, to any person obtaining a +** copy of this software and/or associated documentation files (the +** "Materials"), to deal in the Materials without restriction, including +** without limitation the rights to use, copy, modify, merge, publish, +** distribute, sublicense, and/or sell copies of the Materials, and to +** permit persons to whom the Materials are furnished to do so, subject to +** the following conditions: +** +** The above copyright notice and this permission notice shall be included +** in all copies or substantial portions of the Materials. +** +** THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +** EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +** MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +** IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +** CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +** TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +** MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. +*/ +--> +<!DOCTYPE html> +<html> +<head> +<meta charset="utf-8"> +<link rel="stylesheet" href="../../resources/js-test-style.css"/> +<script src="../../js/js-test-pre.js"></script> +<script src="../../js/webgl-test-utils.js"></script> +<title>WebGL Out-of-Bounds Index Buffer Conformance Test</title> +</head> +<body> +<canvas id="canvas" width="8" height="8" style="width: 100px; height: 100px;"></canvas> +<div id="description"></div> +<div id="console"></div> +<script id="vsCheckOutOfBounds" type="x-shader/x-vertex"> + precision mediump float; + attribute vec2 position; + attribute vec4 vecRandom; + varying vec4 v_color; + + // Per the spec, each component can either contain existing contents + // of the buffer or 0. + bool testFloatComponent(float component) { + return (component == 0.2 || component == 0.0); + } + // The last component is additionally allowed to be 1.0. + bool testLastFloatComponent(float component) { + return testFloatComponent(component) || component == 1.0; + } + + void main() { + if (testFloatComponent(vecRandom.x) && + testFloatComponent(vecRandom.y) && + testFloatComponent(vecRandom.z) && + testLastFloatComponent(vecRandom.w)) { + v_color = vec4(0.0, 1.0, 0.0, 1.0); // green -- We're good + } else { + v_color = vec4(1.0, 0.0, 0.0, 1.0); // red -- Unexpected value + } + gl_Position = vec4(position, 0.0, 1.0); + } +</script> +<script> +"use strict"; +description("This test verifies that out-of-bounds index buffers behave according to spec."); + +// Prepare an element array buffer that indexes out-of-bounds beginning with the start index passed in. +// Ensure that drawElements flags either no error or INVALID_OPERATION. In the case of INVALID_OPERATION, +// no canvas pixels can be touched. In the case of NO_ERROR, all written values must either be the +// zero vertex or a value in the vertex buffer. See vsCheckOutOfBounds shader. +function drawAndVerifyOutOfBoundsIndex(gl, startIndex) { + gl.clearColor(0.0, 0.0, 1.0, 1.0); // Start with blue to indicate no pixels touched. + gl.clear(gl.COLOR_BUFFER_BIT | gl.DEPTH_BUFFER_BIT); + + prepareElementArrayBuffer(gl, /*StartIndex*/startIndex); + + gl.drawElements(gl.TRIANGLE_STRIP, 4, gl.UNSIGNED_SHORT, /*offset*/0); + var error = gl.getError(); + if (error === gl.INVALID_OPERATION) { + testPassed("drawElements flagged INVALID_OPERATION, which is valid so long as all canvas pixels were not touched."); + wtu.checkCanvas(gl, [0, 0, 255, 255]); + } else if (error === gl.NO_ERROR) { + testPassed("drawElements flagged NO_ERROR, which is valid so long as all canvas pixels are green."); + wtu.checkCanvas(gl, [0, 255, 0, 255]); + } else { + testFailed("Invalid error flagged by drawElements. Should be INVALID_OPERATION or NO_ERROR"); + } +} + +// Create an element array buffer with a tri-strip that starts at startIndex and make +// it the active element array buffer. +function prepareElementArrayBuffer(gl, startIndex) { + var glElementArrayBuffer = gl.createBuffer(); + gl.bindBuffer(gl.ELEMENT_ARRAY_BUFFER, glElementArrayBuffer); + var quadIndices = new Uint16Array(4); + for (var i = 0; i < quadIndices.length; i++) { + quadIndices[i] = startIndex + i; + } + gl.bufferData(gl.ELEMENT_ARRAY_BUFFER, quadIndices, gl.STATIC_DRAW); +} + + +var wtu = WebGLTestUtils; +var canvas = document.getElementById("canvas"); +var gl = wtu.create3DContext(canvas, {antialias: false}); + +var numberOfQuads = 200; + +// Create a vertex buffer with 200 properly formed tri-strip quads. These quads will cover the canvas texture +// such that every single pixel is touched by the fragment shader. +var glQuadBuffer = gl.createBuffer(); +gl.bindBuffer(gl.ARRAY_BUFFER, glQuadBuffer); +var quadPositions = new Float32Array(numberOfQuads * /*ComponentsPerQuad*/2 * /*VerticesPerQuad*/4); +for (var i = 0; i < quadPositions.length; i += /*ComponentsPerQuad*/2 * /*VerticesPerQuad*/4) { + quadPositions[i+0] = -1.0; // upper left + quadPositions[i+1] = 1.0; + quadPositions[i+2] = 1.0; // upper right + quadPositions[i+3] = 1.0; + quadPositions[i+4] = -1.0; // lower left + quadPositions[i+5] = -1.0; + quadPositions[i+6] = 1.0; // lower right + quadPositions[i+7] = -1.0; +} +gl.bufferData(gl.ARRAY_BUFFER, quadPositions, gl.STATIC_DRAW); +gl.enableVertexAttribArray(0); +gl.vertexAttribPointer(0, 2, gl.FLOAT, false, 0, 0); + +// Create a small vertex buffer with determined-ahead-of-time "random" values (0.2). This buffer will be +// the one indexed off the end. +var glVertexBuffer = gl.createBuffer(); +gl.bindBuffer(gl.ARRAY_BUFFER, glVertexBuffer); +gl.bufferData(gl.ARRAY_BUFFER, new Float32Array([0.2, 0.2, 0.2, 0.2]), gl.STATIC_DRAW); +gl.enableVertexAttribArray(1); +gl.vertexAttribPointer(1, 4, gl.FLOAT, false, 0, 0); + +// Setup the verification program. +var glProgram = wtu.setupProgram(gl, ["vsCheckOutOfBounds", wtu.simpleVertexColorFragmentShader], ["position", "vecRandom"]); +wtu.glErrorShouldBe(gl, gl.NO_ERROR, "Shader and buffer setup should generate errors"); + +debug("Test -- Index off the end of the vertex buffer near the beginning of the out of bounds area."); +drawAndVerifyOutOfBoundsIndex(gl, /*StartIndex*/4); + +debug(""); + +debug("Test -- Index off the end of the vertex buffer near the end of the out of bounds area.") +drawAndVerifyOutOfBoundsIndex(gl, /*StartIndex*/numberOfQuads - 4); + +var successfullyParsed = true; +</script> +<script src="../../js/js-test-post.js"></script> +</body> +</html> diff --git a/dom/canvas/test/webgl-conf/checkout/conformance/rendering/point-no-attributes.html b/dom/canvas/test/webgl-conf/checkout/conformance/rendering/point-no-attributes.html new file mode 100644 index 000000000..4dbfdddb6 --- /dev/null +++ b/dom/canvas/test/webgl-conf/checkout/conformance/rendering/point-no-attributes.html @@ -0,0 +1,76 @@ +<!-- + +/* +** Copyright (c) 2014 The Khronos Group Inc. +** +** Permission is hereby granted, free of charge, to any person obtaining a +** copy of this software and/or associated documentation files (the +** "Materials"), to deal in the Materials without restriction, including +** without limitation the rights to use, copy, modify, merge, publish, +** distribute, sublicense, and/or sell copies of the Materials, and to +** permit persons to whom the Materials are furnished to do so, subject to +** the following conditions: +** +** The above copyright notice and this permission notice shall be included +** in all copies or substantial portions of the Materials. +** +** THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +** EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +** MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +** IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +** CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +** TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +** MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. +*/ + +--> + +<!DOCTYPE html> +<html> +<head> +<meta charset="utf-8"> +<link rel="stylesheet" href="../../resources/js-test-style.css"/> +<script src="../../js/js-test-pre.js"></script> +<script src="../../js/webgl-test-utils.js"></script> +<script id="vshader" type="x-shader/x-vertex"> +void main() +{ + gl_PointSize = 1.0; + gl_Position = vec4(0.0, 0.0, 0.0, 1.0); +} +</script> + +<script id="fshader" type="x-shader/x-fragment"> +precision mediump float; + +void main() +{ + gl_FragColor = vec4(0.0, 1.0, 0.0, 1.0); +} +</script> +</head> +<body> +<canvas id="testbed" width="1" height="1" style="width: 100px; height: 100px;"></canvas> +<div id="description"></div> +<div id="console"></div> +<script> +"use strict"; +description('Verify that drawing a point without enabling any attributes succeeds'); + +var wtu = WebGLTestUtils; +var gl = wtu.create3DContext('testbed'); + +var program1 = wtu.setupProgram(gl, ['vshader', 'fshader']); + +debug('Draw a point with a shader that takes no attributes and verify it fills the whole canvas.'); + +gl.drawArrays(gl.POINTS, 0, 1); +wtu.glErrorShouldBe(gl, gl.NO_ERROR); +wtu.checkCanvas(gl, [0, 255, 0, 255]); + +var successfullyParsed = true; +</script> +<script src="../../js/js-test-post.js"></script> + +</body> +</html> diff --git a/dom/canvas/test/webgl-conf/checkout/conformance/rendering/point-size.html b/dom/canvas/test/webgl-conf/checkout/conformance/rendering/point-size.html new file mode 100644 index 000000000..14d4e60ec --- /dev/null +++ b/dom/canvas/test/webgl-conf/checkout/conformance/rendering/point-size.html @@ -0,0 +1,150 @@ +<!-- + +/* +** Copyright (c) 2012 The Khronos Group Inc. +** +** Permission is hereby granted, free of charge, to any person obtaining a +** copy of this software and/or associated documentation files (the +** "Materials"), to deal in the Materials without restriction, including +** without limitation the rights to use, copy, modify, merge, publish, +** distribute, sublicense, and/or sell copies of the Materials, and to +** permit persons to whom the Materials are furnished to do so, subject to +** the following conditions: +** +** The above copyright notice and this permission notice shall be included +** in all copies or substantial portions of the Materials. +** +** THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +** EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +** MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +** IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +** CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +** TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +** MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. +*/ + +--> + +<!DOCTYPE html> +<html> +<head> +<meta charset="utf-8"> +<link rel="stylesheet" href="../../resources/js-test-style.css"/> +<script src="../../js/js-test-pre.js"></script> +<script src="../../js/webgl-test-utils.js"></script> +<script id="vshader" type="x-shader/x-vertex"> +attribute vec3 pos; +attribute vec4 colorIn; +uniform float pointSize; +varying vec4 color; + +void main() +{ + gl_PointSize = pointSize; + color = colorIn; + gl_Position = vec4(pos, 1.0); +} +</script> + +<script id="fshader" type="x-shader/x-fragment"> +precision mediump float; +varying vec4 color; + +void main() +{ + gl_FragColor = color; +} +</script> +</head> +<body> +<canvas id="testbed" width="2" height="2"></canvas> +<div id="description"></div> +<div id="console"></div> +<script> +"use strict"; +description('Verify GL_VERTEX_PROGRAM_POINT_SIZE is enabled in WebGL'); + +var wtu = WebGLTestUtils; +var gl = wtu.create3DContext('testbed', { antialias: false }); +shouldBeNonNull("gl"); + +gl.disable(gl.BLEND); + +// The choice of (0.4, 0.4) ensures that the centers of the surrounding +// pixels are not contained within the point when it is of size 1, but +// that they definitely are when it is of size 2. +var vertices = new Float32Array([ + 0.4, 0.4, 0.0]); +var colors = new Uint8Array([ + 255, 0, 0, 255]); + +var colorOffset = vertices.byteLength; + +var buf = new Uint8Array(2 * 2 * 4); +var index = 0; + +var vbo = gl.createBuffer(); +gl.bindBuffer(gl.ARRAY_BUFFER, vbo); +gl.bufferData(gl.ARRAY_BUFFER, colorOffset + colors.byteLength, gl.STATIC_DRAW); +gl.bufferSubData(gl.ARRAY_BUFFER, 0, vertices); +gl.bufferSubData(gl.ARRAY_BUFFER, colorOffset, colors); + +function test(program) { + gl.clear(gl.COLOR_BUFFER_BIT | gl.DEPTH_BUFFER_BIT); + + gl.vertexAttribPointer(0, 3, gl.FLOAT, false, 0, 0); + gl.enableVertexAttribArray(0); + gl.vertexAttribPointer(1, 4, gl.UNSIGNED_BYTE, true, 0, colorOffset); + gl.enableVertexAttribArray(1); + + var locPointSize = gl.getUniformLocation(program, 'pointSize'); + + shouldBe('gl.getError()', 'gl.NO_ERROR'); + + debug('Draw a point of size 1 and verify it does not touch any other pixels.'); + + gl.uniform1f(locPointSize, 1.0); + gl.drawArrays(gl.POINTS, 0, vertices.length / 3); + + shouldBe('gl.getError()', 'gl.NO_ERROR'); + + for (var y = 0; y < 2; ++y) { + for (var x = 0; x < 2; ++x) { + var correctColor = (x == 1 && y == 1) ? [255, 0, 0] : [0, 0, 0]; + wtu.checkCanvasRect(gl, x, y, 1, 1, correctColor); + } + } + gl.clear(gl.COLOR_BUFFER_BIT | gl.DEPTH_BUFFER_BIT); + + debug('Draw a point of size 2 and verify it fills the appropriate region.'); + + var pointSizeRange = gl.getParameter(gl.ALIASED_POINT_SIZE_RANGE); + if (pointSizeRange[1] >= 2.0) { + gl.uniform1f(locPointSize, 2.0); + gl.drawArrays(gl.POINTS, 0, vertices.length / 3); + shouldBe('gl.getError()', 'gl.NO_ERROR'); + wtu.checkCanvasRect(gl, 0, 0, 2, 2, [255, 0, 0]); + } +} + +debug(''); +debug('Pass 1'); +var program1 = wtu.setupProgram(gl, ['vshader', 'fshader'], ['pos', 'colorIn']); +shouldBe('gl.getError()', 'gl.NO_ERROR'); +test(program1); + +// Under some versions of ANGLE point sprite shader programs were +// incorrectly reloaded from cache. Rebuilding the shader program and +// repeating the test simulates the conditions that caused it to fail +debug(''); +debug('Pass 2'); +var program2 = wtu.setupProgram(gl, ['vshader', 'fshader'], ['pos', 'colorIn']); +shouldBe('gl.getError()', 'gl.NO_ERROR'); +test(program2); + +var successfullyParsed = true; +</script> +<script src="../../js/js-test-post.js"></script> + +</body> +</html> diff --git a/dom/canvas/test/webgl-conf/checkout/conformance/rendering/point-specific-shader-variables.html b/dom/canvas/test/webgl-conf/checkout/conformance/rendering/point-specific-shader-variables.html new file mode 100644 index 000000000..06e686acd --- /dev/null +++ b/dom/canvas/test/webgl-conf/checkout/conformance/rendering/point-specific-shader-variables.html @@ -0,0 +1,185 @@ +<!-- +/* +** Copyright (c) 2016 The Khronos Group Inc. +** +** Permission is hereby granted, free of charge, to any person obtaining a +** copy of this software and/or associated documentation files (the +** "Materials"), to deal in the Materials without restriction, including +** without limitation the rights to use, copy, modify, merge, publish, +** distribute, sublicense, and/or sell copies of the Materials, and to +** permit persons to whom the Materials are furnished to do so, subject to +** the following conditions: +** +** The above copyright notice and this permission notice shall be included +** in all copies or substantial portions of the Materials. +** +** THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +** EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +** MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +** IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +** CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +** TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +** MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. +*/ +--> + +<!DOCTYPE html> +<html> +<head> +<meta charset="utf-8"> +<title>Point-specific shader variables test</title> +<link rel="stylesheet" href="../../resources/js-test-style.css"/> +<script src="../../js/js-test-pre.js"></script> +<script src="../../js/webgl-test-utils.js"> </script> +</head> +<body> +<canvas id="c" width="64" height="64"></canvas> +<div id="description"></div> +<div id="console"></div> + +<script id="vs-assign" type="x-shader/x-vertex"> +attribute vec2 aPosition; + +varying vec2 vPos; + +void main() +{ + gl_Position = vec4(aPosition, 0, 1); + vPos = aPosition; + + gl_PointSize = 1.0; +} +</script> + +<script id="vs-conditional" type="x-shader/x-vertex"> +uniform float renderingPoints; // not assigned, equal to 0.0 +attribute vec2 aPosition; + +varying vec2 vPos; + +void main() +{ + gl_Position = vec4(aPosition, 0, 1); + vPos = aPosition; + + if (renderingPoints > 0.0) { + gl_PointSize = 1.0; + } +} +</script> + +<script id="fs-overwrite" type="x-shader/x-fragment"> +varying mediump vec2 vPos; + +void main() +{ + gl_FragColor = vec4(gl_PointCoord.xy, 0, 1); + gl_FragColor = vec4(vPos * -2.0, 0, 1); +} +</script> + +<script id="fs-unused-branch" type="x-shader/x-fragment"> +varying mediump vec2 vPos; +uniform mediump float uDefaultsToZero; + +void main() +{ + gl_FragColor = vec4(vPos * -2.0, 0, 1); + if (uDefaultsToZero == 1.0) { + gl_FragColor = vec4(gl_PointCoord.xy, 0, 1); + } +} +</script> + +<script> +"use strict"; +description(document.title); + +debug('This test verifies rendering with programs referencing shader variables specific to rendering of POINTS primitives.'); + +var wtu = WebGLTestUtils; +var gl = wtu.create3DContext("c", {depth: false}); + +var prog_overwrite = wtu.setupProgram(gl, ["vs-assign", "fs-overwrite"], ["aPosition"]); +var prog_branch = wtu.setupProgram(gl, ["vs-assign", "fs-unused-branch"], ["aPosition"]); +var prog_cond_overwrite = wtu.setupProgram(gl, ["vs-conditional", "fs-overwrite"], ["aPosition"]); +var prog_cond_branch = wtu.setupProgram(gl, ["vs-conditional", "fs-unused-branch"], ["aPosition"]); + +var vertData = new Float32Array([ + -1, -1, + +1, -1, + -1, +1, +]); + +var vertexObject = gl.createBuffer(); +gl.bindBuffer(gl.ARRAY_BUFFER, vertexObject); +gl.bufferData(gl.ARRAY_BUFFER, vertData, gl.STATIC_DRAW); + +gl.enableVertexAttribArray(0); +gl.vertexAttribPointer(0, 2, gl.FLOAT, false, 0, 0); + +////////// + +debug(""); +debug("prog-overwrite"); + +gl.clear(gl.COLOR_BUFFER_BIT); +wtu.checkCanvasRect(gl, 0, 0, 1, 1, [0, 0, 0, 0]); // Bottom-left + +gl.useProgram(prog_overwrite); +gl.drawArrays(gl.TRIANGLES, 0, 3); + +wtu.checkCanvasRect(gl, 0, 0, 1, 1, [255, 255, 0, 255]); // Bottom-left +wtu.checkCanvasRect(gl, 63, 63, 1, 1, [0, 0, 0, 0]); // Top-right + + +////////// + +debug(""); +debug("prog-branch"); + +gl.clear(gl.COLOR_BUFFER_BIT); +wtu.checkCanvasRect(gl, 0, 0, 1, 1, [0, 0, 0, 0]); // Bottom-left + +gl.useProgram(prog_branch); +gl.drawArrays(gl.TRIANGLES, 0, 3); + +wtu.checkCanvasRect(gl, 0, 0, 1, 1, [255, 255, 0, 255]); // Bottom-left +wtu.checkCanvasRect(gl, 63, 63, 1, 1, [0, 0, 0, 0]); // Top-right + +////////// + +debug(""); +debug("prog-cond-overwrite"); + +gl.clear(gl.COLOR_BUFFER_BIT); +wtu.checkCanvasRect(gl, 0, 0, 1, 1, [0, 0, 0, 0]); // Bottom-left + +gl.useProgram(prog_cond_overwrite); +gl.drawArrays(gl.TRIANGLES, 0, 3); + +wtu.checkCanvasRect(gl, 0, 0, 1, 1, [255, 255, 0, 255]); // Bottom-left +wtu.checkCanvasRect(gl, 63, 63, 1, 1, [0, 0, 0, 0]); // Top-right + + +////////// + +debug(""); +debug("prog-cond-branch"); + +gl.clear(gl.COLOR_BUFFER_BIT); +wtu.checkCanvasRect(gl, 0, 0, 1, 1, [0, 0, 0, 0]); // Bottom-left + +gl.useProgram(prog_cond_branch); +gl.drawArrays(gl.TRIANGLES, 0, 3); + +wtu.checkCanvasRect(gl, 0, 0, 1, 1, [255, 255, 0, 255]); // Bottom-left +wtu.checkCanvasRect(gl, 63, 63, 1, 1, [0, 0, 0, 0]); // Top-right + +var successfullyParsed = true; +</script> + +<script src="../../js/js-test-post.js"></script> + +</body> +</html> diff --git a/dom/canvas/test/webgl-conf/checkout/conformance/rendering/point-with-gl-pointcoord-in-fragment-shader.html b/dom/canvas/test/webgl-conf/checkout/conformance/rendering/point-with-gl-pointcoord-in-fragment-shader.html new file mode 100644 index 000000000..16dcca0d7 --- /dev/null +++ b/dom/canvas/test/webgl-conf/checkout/conformance/rendering/point-with-gl-pointcoord-in-fragment-shader.html @@ -0,0 +1,140 @@ +<!-- + +/* +** Copyright (c) 2013 The Khronos Group Inc. +** +** Permission is hereby granted, free of charge, to any person obtaining a +** copy of this software and/or associated documentation files (the +** "Materials"), to deal in the Materials without restriction, including +** without limitation the rights to use, copy, modify, merge, publish, +** distribute, sublicense, and/or sell copies of the Materials, and to +** permit persons to whom the Materials are furnished to do so, subject to +** the following conditions: +** +** The above copyright notice and this permission notice shall be included +** in all copies or substantial portions of the Materials. +** +** THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +** EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +** MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +** IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +** CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +** TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +** MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. +*/ + +--> + +<!DOCTYPE html> +<html> +<head> +<meta charset="utf-8"> +<title>WebGL Point with gl_PointCoord in Fragment Shader Test</title> +<link rel="stylesheet" href="../../resources/js-test-style.css"/> +<script src="../../js/js-test-pre.js"></script> +<script src="../../js/webgl-test-utils.js"></script> +</head> +<body> +<div id="description"></div> +<canvas id="canvas" width="64" height="64"> </canvas> +<div id="console"></div> +<script id="vs" type="x-shader/x-vertex"> +varying vec4 v_color; + +// The X and Y coordinates of the center of the point. +attribute vec2 a_vertex; + +uniform float u_pointSize; + +void main(void) { + gl_PointSize = u_pointSize; + gl_Position = vec4(a_vertex, 0.0, 1.0); + + // The color of the point. + v_color = vec4(0.0, 1.0, 0.0, 1.0); +} + +</script> +<script id="fs" type="x-shader/x-fragment"> +precision mediump float; + +varying vec4 v_color; + +void main(void) { + // It seems as long as this mathematical expression references + // gl_PointCoord, the fragment's color is incorrect. + vec2 diff = gl_PointCoord - vec2(.5, .5); + if (length(diff) > 0.5) + discard; + + // The point should be a solid color. + gl_FragColor = v_color; +} +</script> +<script> +"use strict"; +// Radar 13239314 +description("This is a regression test for a graphics driver bug affecting end caps on roads in MapsGL."); + +debug(""); + +var wtu = WebGLTestUtils; +var canvas = document.getElementById("canvas"); +var canvasWidth = canvas.width; +var canvasHeight = canvas.height; +var output = document.getElementById("console"); +var gl = wtu.create3DContext(canvas); + +function runTest() { + var pointSizeRange = gl.getParameter(gl.ALIASED_POINT_SIZE_RANGE); + // This test can't really run without a maximum point size of at least 2 + if (pointSizeRange[1] < 2.0) { + debug("This test needs a maximum ALIASED_POINT_SIZE_RANGE of at least 2"); + return; + } + + var vs = wtu.loadShaderFromScript(gl, "vs", gl.VERTEX_SHADER); + var fs = wtu.loadShaderFromScript(gl, "fs", gl.FRAGMENT_SHADER); + if (!vs || !fs) { + testFailed("Loading shaders failed"); + return; + } + + var program = wtu.setupProgram(gl, [vs, fs], ['a_vertex']); + if (!program) { + testFailed("Loading program failed"); + return; + } + + gl.useProgram(program); + gl.clearColor(0, 0, 0, 1.0); + gl.disable(gl.DEPTH_TEST); + gl.clear(gl.COLOR_BUFFER_BIT); + + // uniform float u_pointSize; + var uni = gl.getUniformLocation(program, 'u_pointSize'); + gl.uniform1f(uni, Math.min(20.0, pointSizeRange[1])); + + // vertex + var buffer = gl.createBuffer(); + gl.bindBuffer(gl.ARRAY_BUFFER, buffer); + var vertexData = new Float32Array([ + 0, 0, + ]); + gl.bufferData(gl.ARRAY_BUFFER, vertexData, gl.STATIC_DRAW); + gl.enableVertexAttribArray(0); + gl.vertexAttribPointer(0, 2, gl.FLOAT, false, 0, 0); + + gl.drawArrays(gl.POINTS, 0, 1); + wtu.checkCanvasRect(gl, canvasWidth / 2, canvasHeight / 2, 1, 1, + [0, 255, 0, 255], "Center pixel should be green", 2); +} + +runTest(); + +debug(""); +var successfullyParsed = true; +</script> +<script src="../../js/js-test-post.js"></script> +</body> +</html> diff --git a/dom/canvas/test/webgl-conf/checkout/conformance/rendering/polygon-offset.html b/dom/canvas/test/webgl-conf/checkout/conformance/rendering/polygon-offset.html new file mode 100644 index 000000000..fd49f6741 --- /dev/null +++ b/dom/canvas/test/webgl-conf/checkout/conformance/rendering/polygon-offset.html @@ -0,0 +1,192 @@ +<!-- + +/* +** Copyright (c) 2014 The Khronos Group Inc. +** +** Permission is hereby granted, free of charge, to any person obtaining a +** copy of this software and/or associated documentation files (the +** "Materials"), to deal in the Materials without restriction, including +** without limitation the rights to use, copy, modify, merge, publish, +** distribute, sublicense, and/or sell copies of the Materials, and to +** permit persons to whom the Materials are furnished to do so, subject to +** the following conditions: +** +** The above copyright notice and this permission notice shall be included +** in all copies or substantial portions of the Materials. +** +** THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +** EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +** MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +** IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +** CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +** TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +** MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. +*/ + +--> + +<!DOCTYPE html> +<html> +<head> +<meta charset="utf-8"> +<link rel="stylesheet" href="../../resources/js-test-style.css"/> +<script src="../../js/js-test-pre.js"></script> +<script src="../../js/webgl-test-utils.js"></script> +<script id="vshader" type="x-shader/x-vertex"> +attribute vec3 pos; + +void main() +{ + gl_Position = vec4(pos, 1); +} +</script> + +<script id="fshader" type="x-shader/x-fragment"> +precision mediump float; +uniform vec4 col; + +void main() +{ + gl_FragColor = col; +} +</script> + +<script> +"use strict"; +var wtu = WebGLTestUtils; + +function draw(gl, arr, colLoc, col) +{ + var vertices = new Float32Array(arr); + var vertBuf = gl.createBuffer(); + gl.bindBuffer(gl.ARRAY_BUFFER, vertBuf); + gl.bufferData(gl.ARRAY_BUFFER, vertices, gl.STATIC_DRAW); + gl.vertexAttribPointer(0, 3, gl.FLOAT, false, 0, 0); + gl.uniform4fv(colLoc, col); + gl.drawArrays(gl.TRIANGLE_STRIP, 0, vertices.length / 3); +} + +function clear(gl, col, z) +{ + gl.clearColor(col[0], col[1], col[2], col[3]); + gl.clearDepth(z); + gl.clear(gl.COLOR_BUFFER_BIT | gl.DEPTH_BUFFER_BIT); +} + +function check(gl) +{ + wtu.checkCanvasRect(gl, 0, 0, 16, 16, [0, 255, 0, 255], 'result should be green'); +} + +function runTest() +{ + var flatSquare = [-1, -1, 0, + -1, 1, 0, + 1, -1, 0, + 1, 1, 0]; + var slantedSquare = [-1, -1, -0.5, + -1, 1, -0.5, + 1, -1, 0.5, + 1, 1, 0.5]; + var red = [1, 0, 0, 1]; + var green = [0, 1, 0, 1]; + var blue = [0, 0, 1, 1]; + + var gl = wtu.create3DContext('testbed', { antialias: false }); + if (!gl) + { + testFailed('could not create context'); + return; + } + var program = wtu.setupProgram(gl, ['vshader', 'fshader'], ['pos']); + var colLoc = gl.getUniformLocation(program, 'col'); + + gl.enableVertexAttribArray(0); + + gl.enable(gl.DEPTH_TEST); + gl.depthFunc(gl.LEQUAL); + + debug('Polygon offset fill should be off by default'); + clear(gl, red, 1.0); + draw(gl, slantedSquare, colLoc, blue); + draw(gl, slantedSquare, colLoc, green); + check(gl); + + debug('Polygon offset units should have no effect when fill is off'); + clear(gl, red, 1.0); + draw(gl, slantedSquare, colLoc, blue); + gl.polygonOffset(0, 10); + draw(gl, slantedSquare, colLoc, green); + check(gl); + + debug('Polygon offset factor should have no effect when fill is off'); + clear(gl, red, 1.0); + gl.polygonOffset(0, 0); + draw(gl, slantedSquare, colLoc, blue); + gl.polygonOffset(1.0, 0); + draw(gl, slantedSquare, colLoc, green); + check(gl); + + debug('Zero polygon offset units and factor should have no effect'); + clear(gl, red, 1.0); + gl.enable(gl.POLYGON_OFFSET_FILL); + gl.polygonOffset(0, 0); + draw(gl, slantedSquare, colLoc, blue); + draw(gl, slantedSquare, colLoc, green); + check(gl); + + // It appears to be VERY common for drivers to implement the units offset in + // floating-point arithmetic, which results in rount-to-nearest-even to cause + // an offset of 1 to sometimes not alter the order between these polygons. + debug('Polygon offset units of 2 should alter order of flat polygons'); + clear(gl, red, 1.0); + draw(gl, flatSquare, colLoc, green); + gl.polygonOffset(0, 2); + draw(gl, flatSquare, colLoc, blue); + check(gl); + + debug('Polygon offset factor of 0.1 should alter order of slanted polygons'); + clear(gl, red, 1.0); + draw(gl, slantedSquare, colLoc, green); + gl.polygonOffset(0.1, 0); + draw(gl, slantedSquare, colLoc, blue); + check(gl); + + debug('Polygon offset factor of 0.1 should not alter order of flat polygons'); + clear(gl, red, 1.0); + draw(gl, flatSquare, colLoc, blue); + gl.polygonOffset(0.1, 0); + draw(gl, flatSquare, colLoc, green); + check(gl); + + debug('Disabling polygon offset fill should leave order unaffected'); + clear(gl, red, 1.0); + gl.polygonOffset(0.1, 1); + gl.disable(gl.POLYGON_OFFSET_FILL); + draw(gl, slantedSquare, colLoc, blue); + draw(gl, slantedSquare, colLoc, green); + check(gl); + + debug('Enabling polygon offset fill should affect order again'); + clear(gl, red, 1.0); + draw(gl, slantedSquare, colLoc, green); + gl.enable(gl.POLYGON_OFFSET_FILL); + draw(gl, slantedSquare, colLoc, blue); + check(gl); +} +</script> +</head> +<body> +<canvas id="testbed" width="16" height="16" style="width:50px; height:50px"></canvas> +<div id="description"></div> +<div id="console"></div> +<script> +"use strict"; +description('Verify that polygon offset works'); +runTest(); +var successfullyParsed = true; +</script> +<script src="../../js/js-test-post.js"></script> + +</body> +</html> diff --git a/dom/canvas/test/webgl-conf/checkout/conformance/rendering/simple.html b/dom/canvas/test/webgl-conf/checkout/conformance/rendering/simple.html new file mode 100644 index 000000000..b8496f011 --- /dev/null +++ b/dom/canvas/test/webgl-conf/checkout/conformance/rendering/simple.html @@ -0,0 +1,98 @@ +<!-- + +/* +** Copyright (c) 2012 The Khronos Group Inc. +** +** Permission is hereby granted, free of charge, to any person obtaining a +** copy of this software and /or associated documentation files (the +** "Materials"), to deal in the Materials without restriction, including +** without limitation the rights to use, copy, modify, merge, publish, +** distribute, sublicense, and/or sell copies of the Materials, and to +** permit persons to whom the Materials are furnished to do so, subject to +** the following conditions: +** +** The above copyright notice and this permission notice shall be included +** in all copies or substantial portions of the Materials. +** +** THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +** EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +** MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +** IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +** CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +** TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +** MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. +*/ + +--> + +<!DOCTYPE html> +<html> +<head> +<meta charset="utf-8"> +<title>Simple Rendering Test</title> +<link rel="stylesheet" href="../../resources/js-test-style.css"/> +<script src="../../js/js-test-pre.js"></script> +<script src="../../js/webgl-test-utils.js"> </script> +</head> +<body> +<canvas id="example" width="50" height="50"> +There is supposed to be an example drawing here, but it's not important. +</canvas> +<div id="description"></div> +<div id="console"></div> +<script id="vshader" type="x-shader/x-vertex"> +attribute vec4 a_Position; +void main() +{ + gl_Position = a_Position; +} +</script> + +<script id="fshader" type="x-shader/x-fragment"> +void main() +{ + gl_FragColor = vec4(0,1,0,1); +} +</script> +<script> +"use strict"; +var wtu = WebGLTestUtils; +function init() +{ + description(); + + var gl = wtu.create3DContext("example"); + var program = wtu.loadProgramFromScript(gl, "vshader", "fshader"); + gl.useProgram(program); + var loc = gl.getAttribLocation(program, "a_Position"); + + var vertexObject = gl.createBuffer(); + gl.bindBuffer(gl.ARRAY_BUFFER, vertexObject); + gl.bufferData( + gl.ARRAY_BUFFER, + new Float32Array( + [ 1, 1, + -1, 1, + -1, -1, + 1, 1, + -1, -1, + 1, -1]), + gl.STATIC_DRAW); + gl.enableVertexAttribArray(loc); + gl.vertexAttribPointer(loc, 2, gl.FLOAT, false, 0, 0); + + gl.clear(gl.COLOR_BUFFER_BIT | gl.DEPTH_BUFFER_BIT); + wtu.checkCanvas(gl, [0,0,0,0], "should be black", 0); + gl.drawArrays(gl.TRIANGLES, 0, 6); + wtu.checkCanvas(gl, [0,255,0,255], "should be green", 0); + + wtu.glErrorShouldBe(gl, gl.NO_ERROR, "there should be no errors"); +} + +init(); +var successfullyParsed = true; +</script> +<script src="../../js/js-test-post.js"></script> + +</body> +</html> diff --git a/dom/canvas/test/webgl-conf/checkout/conformance/rendering/triangle.html b/dom/canvas/test/webgl-conf/checkout/conformance/rendering/triangle.html new file mode 100644 index 000000000..f2cfdb3af --- /dev/null +++ b/dom/canvas/test/webgl-conf/checkout/conformance/rendering/triangle.html @@ -0,0 +1,94 @@ +<!-- + +/* +** Copyright (c) 2012 The Khronos Group Inc. +** +** Permission is hereby granted, free of charge, to any person obtaining a +** copy of this software and/or associated documentation files (the +** "Materials"), to deal in the Materials without restriction, including +** without limitation the rights to use, copy, modify, merge, publish, +** distribute, sublicense, and/or sell copies of the Materials, and to +** permit persons to whom the Materials are furnished to do so, subject to +** the following conditions: +** +** The above copyright notice and this permission notice shall be included +** in all copies or substantial portions of the Materials. +** +** THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +** EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +** MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +** IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +** CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +** TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +** MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. +*/ + +--> + +<!DOCTYPE html> +<html> +<head> +<meta charset="utf-8"> +<title>Rendering Test</title> +<link rel="stylesheet" href="../../resources/js-test-style.css"/> +<script src="../../js/js-test-pre.js"></script> +<script src="../../js/webgl-test-utils.js"> </script> +</head> +<body> +<canvas id="example" width="50" height="50"> +There is supposed to be an example drawing here, but it's not important. +</canvas> +<div id="description"></div> +<div id="console"></div> +<script id="vshader" type="x-shader/x-vertex"> +attribute vec4 vPosition; +void main() +{ + gl_Position = vPosition; +} +</script> + +<script id="fshader" type="x-shader/x-fragment"> +void main() +{ + gl_FragColor = vec4(1.0,0.0,0.0,1.0); +} +</script> + +<script> +"use strict"; +function init() +{ + description(document.title); + + var wtu = WebGLTestUtils; + var gl = wtu.create3DContext("example"); + var program = wtu.setupProgram(gl, ["vshader", "fshader"], ["vPosition"]); + + var vertexObject = gl.createBuffer(); + gl.bindBuffer(gl.ARRAY_BUFFER, vertexObject); + gl.bufferData(gl.ARRAY_BUFFER, new Float32Array([ 0,0.5,0, -0.5,-0.5,0, 0.5,-0.5,0 ]), gl.STATIC_DRAW); + gl.enableVertexAttribArray(0); + gl.vertexAttribPointer(0, 3, gl.FLOAT, false, 0, 0); + + gl.clear(gl.COLOR_BUFFER_BIT | gl.DEPTH_BUFFER_BIT); + gl.drawArrays(gl.TRIANGLES, 0, 3); + + // Test several locations + // First line should be all black + wtu.checkCanvasRect(gl, 0, 0, 50, 1, [0, 0, 0, 0]); + + // Line 15 should be red for at least 10 red pixels starting 20 pixels in + wtu.checkCanvasRect(gl, 20, 15, 10, 1, [255, 0, 0, 255]); + + // Last line should be all black + wtu.checkCanvasRect(gl, 0, 49, 50, 1, [0, 0, 0, 0]); +} + +init(); +var successfullyParsed = true; +</script> +<script src="../../js/js-test-post.js"></script> + +</body> +</html> diff --git a/dom/canvas/test/webgl-conf/checkout/conformance/rendering/vertex-texture-fetch.html b/dom/canvas/test/webgl-conf/checkout/conformance/rendering/vertex-texture-fetch.html new file mode 100644 index 000000000..9e31a9c49 --- /dev/null +++ b/dom/canvas/test/webgl-conf/checkout/conformance/rendering/vertex-texture-fetch.html @@ -0,0 +1,112 @@ +<!-- + +/* +** Copyright (c) 2012 The Khronos Group Inc. +** +** Permission is hereby granted, free of charge, to any person obtaining a +** copy of this software and/or associated documentation files (the +** "Materials"), to deal in the Materials without restriction, including +** without limitation the rights to use, copy, modify, merge, publish, +** distribute, sublicense, and/or sell copies of the Materials, and to +** permit persons to whom the Materials are furnished to do so, subject to +** the following conditions: +** +** The above copyright notice and this permission notice shall be included +** in all copies or substantial portions of the Materials. +** +** THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +** EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +** MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +** IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +** CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +** TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +** MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. +*/ + +--> + +<!DOCTYPE html> +<html> +<head> +<meta charset="utf-8"> +<title>WebGL Vertex Texture Fetch.</title> +<link rel="stylesheet" href="../../resources/js-test-style.css"/> +<script src="../../js/js-test-pre.js"></script> +<script src="../../js/webgl-test-utils.js"> </script> +</head> +<body> +<canvas id="example" width="1" height="1" style="width: 40px; height: 40px;"></canvas> +<div id="description"></div> +<div id="console"></div> +<script id="vs" type="text/something-not-javascript"> +attribute vec4 a_position; +attribute vec2 a_texCoord; +uniform sampler2D u_texture; +varying vec4 color; +void main() { + gl_Position = a_position; + color = texture2D(u_texture, a_texCoord); +} +</script> +<script id="fs" type="text/something-not-javascript"> +precision mediump float; +varying vec4 color; +void main() { + gl_FragColor = color; +} +</script> +<script> +"use strict"; +description("checks that vertex texture fetch, if supported, operates correctly."); +var wtu = WebGLTestUtils; +var gl = wtu.create3DContext("example"); +if (!gl.getParameter(gl.MAX_VERTEX_TEXTURE_IMAGE_UNITS)) { + testPassed("No vertex texture image units (vertex texture fetch not supported) -- this is legal"); +} else { + var texture = gl.createTexture(); + gl.bindTexture(gl.TEXTURE_2D, texture); + gl.texImage2D(gl.TEXTURE_2D, 0, gl.RGBA, 2, 2, 0, gl.RGBA, gl.UNSIGNED_BYTE, + new Uint8Array([ + 255, 0, 0, 255, + 0, 255, 0, 255, + 0, 0, 255, 255, + 255, 255, 0, 255])); + gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_MIN_FILTER, gl.NEAREST); + gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_MAG_FILTER, gl.NEAREST); + gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_WRAP_S, gl.CLAMP_TO_EDGE); + gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_WRAP_T, gl.CLAMP_TO_EDGE); + wtu.glErrorShouldBe(gl, gl.NO_ERROR, "after creating texture"); + + var program = wtu.setupProgram(gl, ["vs", "fs"], ["vPosition", "vTexCoord"]); + gl.uniform1i(gl.getUniformLocation(program, "u_texture"), 0); + gl.disable(gl.BLEND); + gl.disable(gl.DEPTH_TEST); + wtu.glErrorShouldBe(gl, gl.NO_ERROR, "after initWebGL"); + var bufferObjects = wtu.setupUnitQuad(gl, 0); + gl.disableVertexAttribArray(1); + + gl.vertexAttrib2f(1, 0, 0); + wtu.clearAndDrawUnitQuad(gl); + wtu.checkCanvas(gl, [255, 0, 0, 255], "Should be red."); + + gl.vertexAttrib2f(1, 1, 0); + wtu.clearAndDrawUnitQuad(gl); + wtu.checkCanvas(gl, [0, 255, 0, 255], "Should be green."); + + gl.vertexAttrib2f(1, 0, 1); + wtu.clearAndDrawUnitQuad(gl); + wtu.checkCanvas(gl, [0, 0, 255, 255], "Should be blue."); + + gl.vertexAttrib2f(1, 1, 1); + wtu.clearAndDrawUnitQuad(gl); + wtu.checkCanvas(gl, [255, 255, 0, 255], "Should be yellow."); + + wtu.glErrorShouldBe(gl, gl.NO_ERROR, "after drawing"); +} + +var successfullyParsed = true; +</script> +<script src="../../js/js-test-post.js"></script> + +</body> +</html> |