mirror of
https://github.com/servo/servo.git
synced 2025-08-06 14:10:11 +01:00
Auto merge of #21523 - servo:webgl, r=avadacatavra,jdm
Some more drive-by WebGL fixes and cleanups <!-- Reviewable:start --> This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/21523) <!-- Reviewable:end -->
This commit is contained in:
commit
6f81ed49f6
164 changed files with 452 additions and 2780 deletions
|
@ -11927,16 +11927,6 @@
|
|||
[
|
||||
{}
|
||||
]
|
||||
],
|
||||
"webgl/OWNERS": [
|
||||
[
|
||||
{}
|
||||
]
|
||||
],
|
||||
"webgl/common.js": [
|
||||
[
|
||||
{}
|
||||
]
|
||||
]
|
||||
},
|
||||
"testharness": {
|
||||
|
@ -20881,42 +20871,6 @@
|
|||
"/_mozilla/mozilla/worklets/test_worklet.html",
|
||||
{}
|
||||
]
|
||||
],
|
||||
"webgl/bufferSubData.html": [
|
||||
[
|
||||
"/_mozilla/webgl/bufferSubData.html",
|
||||
{}
|
||||
]
|
||||
],
|
||||
"webgl/compressedTexImage2D.html": [
|
||||
[
|
||||
"/_mozilla/webgl/compressedTexImage2D.html",
|
||||
{}
|
||||
]
|
||||
],
|
||||
"webgl/compressedTexSubImage2D.html": [
|
||||
[
|
||||
"/_mozilla/webgl/compressedTexSubImage2D.html",
|
||||
{}
|
||||
]
|
||||
],
|
||||
"webgl/texImage2D.html": [
|
||||
[
|
||||
"/_mozilla/webgl/texImage2D.html",
|
||||
{}
|
||||
]
|
||||
],
|
||||
"webgl/texSubImage2D.html": [
|
||||
[
|
||||
"/_mozilla/webgl/texSubImage2D.html",
|
||||
{}
|
||||
]
|
||||
],
|
||||
"webgl/uniformMatrixNfv.html": [
|
||||
[
|
||||
"/_mozilla/webgl/uniformMatrixNfv.html",
|
||||
{}
|
||||
]
|
||||
]
|
||||
}
|
||||
},
|
||||
|
@ -33008,38 +32962,6 @@
|
|||
"mozilla/worklets/throw_exception.js": [
|
||||
"6ca4f80fc2728c00848bb4474b62fa3596ed2f18",
|
||||
"support"
|
||||
],
|
||||
"webgl/OWNERS": [
|
||||
"7507064ad72f41047fe1db39c3cb95da7ffea252",
|
||||
"support"
|
||||
],
|
||||
"webgl/bufferSubData.html": [
|
||||
"a97df9062d6ea964e500059e155b29604edc21b6",
|
||||
"testharness"
|
||||
],
|
||||
"webgl/common.js": [
|
||||
"416c21ce9330d3f73576b6b5aa01dab06c5798ee",
|
||||
"support"
|
||||
],
|
||||
"webgl/compressedTexImage2D.html": [
|
||||
"b0a031add0be018f995e4463114d333a0d9eb85a",
|
||||
"testharness"
|
||||
],
|
||||
"webgl/compressedTexSubImage2D.html": [
|
||||
"539f9e17f8a811c5acb4f07cf6cbd17015726632",
|
||||
"testharness"
|
||||
],
|
||||
"webgl/texImage2D.html": [
|
||||
"2f769160dfdeaa3b0a73380e5540b30dfc971489",
|
||||
"testharness"
|
||||
],
|
||||
"webgl/texSubImage2D.html": [
|
||||
"294b30c7607edc38aed19a31e44c5237eee8b970",
|
||||
"testharness"
|
||||
],
|
||||
"webgl/uniformMatrixNfv.html": [
|
||||
"f75cbcb99724219224c63d0dc595b1c001298500",
|
||||
"testharness"
|
||||
]
|
||||
},
|
||||
"url_base": "/_mozilla/",
|
||||
|
|
|
@ -1 +0,0 @@
|
|||
@emilio
|
|
@ -1,26 +0,0 @@
|
|||
<!doctype html>
|
||||
<title>bufferSubData</title>
|
||||
<link rel=author href=mailto:Ms2ger@gmail.com title=Ms2ger>
|
||||
<link rel=help href=https://www.khronos.org/registry/webgl/specs/latest/#5.14.5>
|
||||
<script src=/resources/testharness.js></script>
|
||||
<script src=/resources/testharnessreport.js></script>
|
||||
<script src=common.js></script>
|
||||
|
||||
<div id=log></div>
|
||||
<script>
|
||||
test(function() {
|
||||
var gl = getGl();
|
||||
assert_equals(gl.getError(), WebGLRenderingContext.NO_ERROR);
|
||||
|
||||
var b = gl.createBuffer();
|
||||
gl.bindBuffer(gl.ARRAY_BUFFER, b);
|
||||
|
||||
var a = new Float32Array(1);
|
||||
gl.bufferData(gl.ARRAY_BUFFER, a, gl.STATIC_DRAW);
|
||||
|
||||
var nan = 0 / 0;
|
||||
gl.bufferSubData(gl.ARRAY_BUFFER, nan, a);
|
||||
|
||||
assert_equals(gl.getError(), WebGLRenderingContext.NO_ERROR);
|
||||
});
|
||||
</script>
|
|
@ -1,13 +0,0 @@
|
|||
function getGl() {
|
||||
var c = document.createElement("canvas");
|
||||
var gl = c.getContext("experimental-webgl");
|
||||
assert_true(!!gl, "Should be able to get a context.");
|
||||
return gl;
|
||||
}
|
||||
|
||||
function shouldGenerateGLError(cx, glError, fn) {
|
||||
test(function() {
|
||||
fn();
|
||||
assert_equals(cx.getError(), glError);
|
||||
}, "Calling " + fn + " should generate a " + glError + " error.");
|
||||
}
|
|
@ -1,30 +0,0 @@
|
|||
<!doctype html>
|
||||
<title>compressedTexImage2D</title>
|
||||
<link rel=author href=mailto:Ms2ger@gmail.com title=Ms2ger>
|
||||
<link rel=help href=https://www.khronos.org/registry/webgl/specs/latest/#5.14.8>
|
||||
<script src=/resources/testharness.js></script>
|
||||
<script src=/resources/testharnessreport.js></script>
|
||||
<script src=common.js></script>
|
||||
|
||||
<div id=log></div>
|
||||
<script>
|
||||
test(function() {
|
||||
var COMPRESSED_RGB_S3TC_DXT1_EXT = 0x83F0;
|
||||
var gl = getGl();
|
||||
|
||||
var tex = gl.createTexture();
|
||||
gl.bindTexture(gl.TEXTURE_2D, tex);
|
||||
|
||||
shouldGenerateGLError(gl, gl.INVALID_ENUM, function() {
|
||||
gl.compressedTexImage2D(gl.TEXTURE_2D, 0, COMPRESSED_RGB_S3TC_DXT1_EXT, 4, 4, 0, new Uint8Array(8));
|
||||
});
|
||||
shouldGenerateGLError(gl, gl.INVALID_ENUM, function() {
|
||||
gl.compressedTexImage2D(gl.TEXTURE_2D, 0, COMPRESSED_RGB_S3TC_DXT1_EXT, 4, 4, 0, new Uint8Array(8), null);
|
||||
});
|
||||
test(function() {
|
||||
assert_throws(new TypeError(), function() {
|
||||
gl.compressedTexImage2D(gl.TEXTURE_2D, 0, COMPRESSED_RGB_S3TC_DXT1_EXT, 4, 4, 0);
|
||||
});
|
||||
}, "Should throw a TypeError when passing too few arguments.");
|
||||
});
|
||||
</script>
|
|
@ -1,30 +0,0 @@
|
|||
<!doctype html>
|
||||
<title>compressedTexSubImage2D</title>
|
||||
<link rel=author href=mailto:Ms2ger@gmail.com title=Ms2ger>
|
||||
<link rel=help href=https://www.khronos.org/registry/webgl/specs/latest/#5.14.8>
|
||||
<script src=/resources/testharness.js></script>
|
||||
<script src=/resources/testharnessreport.js></script>
|
||||
<script src=common.js></script>
|
||||
|
||||
<div id=log></div>
|
||||
<script>
|
||||
test(function() {
|
||||
var COMPRESSED_RGB_S3TC_DXT1_EXT = 0x83F0;
|
||||
var gl = getGl();
|
||||
|
||||
var tex = gl.createTexture();
|
||||
gl.bindTexture(gl.TEXTURE_2D, tex);
|
||||
|
||||
shouldGenerateGLError(gl, gl.INVALID_ENUM, function() {
|
||||
gl.compressedTexSubImage2D(gl.TEXTURE_2D, 0, 0, 0, 10, 10, COMPRESSED_RGB_S3TC_DXT1_EXT, new Uint8Array(8));
|
||||
});
|
||||
shouldGenerateGLError(gl, gl.INVALID_ENUM, function() {
|
||||
gl.compressedTexSubImage2D(gl.TEXTURE_2D, 0, 0, 0, 10, 10, COMPRESSED_RGB_S3TC_DXT1_EXT, new Uint8Array(8), null);
|
||||
});
|
||||
test(function() {
|
||||
assert_throws(new TypeError(), function() {
|
||||
gl.compressedTexSubImage2D(gl.TEXTURE_2D, 0, 0, 0, 10, 10, COMPRESSED_RGB_S3TC_DXT1_EXT);
|
||||
});
|
||||
}, "Should throw a TypeError when passing too few arguments.");
|
||||
});
|
||||
</script>
|
|
@ -1,20 +0,0 @@
|
|||
<!doctype html>
|
||||
<title>texImage2D</title>
|
||||
<link rel=author href=mailto:Ms2ger@gmail.com title=Ms2ger>
|
||||
<link rel=help href=https://www.khronos.org/registry/webgl/specs/latest/#5.14.8>
|
||||
<script src=/resources/testharness.js></script>
|
||||
<script src=/resources/testharnessreport.js></script>
|
||||
<script src=common.js></script>
|
||||
|
||||
<div id=log></div>
|
||||
<script>
|
||||
test(function() {
|
||||
var gl = getGl();
|
||||
assert_throws(new TypeError(), function() {
|
||||
gl.texImage2D(0, 0, 0, 0, 0, window);
|
||||
});
|
||||
assert_throws(new TypeError(), function() {
|
||||
gl.texImage2D(0, 0, 0, 0, 0, { get width() { throw 7 }, get height() { throw 7 }, data: new Uint8ClampedArray(10) });
|
||||
});
|
||||
});
|
||||
</script>
|
|
@ -1,20 +0,0 @@
|
|||
<!doctype html>
|
||||
<title>texSubImage2D</title>
|
||||
<link rel=author href=mailto:Ms2ger@gmail.com title=Ms2ger>
|
||||
<link rel=help href=https://www.khronos.org/registry/webgl/specs/latest/#5.14.8>
|
||||
<script src=/resources/testharness.js></script>
|
||||
<script src=/resources/testharnessreport.js></script>
|
||||
<script src=common.js></script>
|
||||
|
||||
<div id=log></div>
|
||||
<script>
|
||||
test(function() {
|
||||
var gl = getGl();
|
||||
assert_throws(new TypeError(), function() {
|
||||
gl.texSubImage2D(0, 0, 0, 0, 0, 0, window);
|
||||
});
|
||||
assert_throws(new TypeError(), function() {
|
||||
gl.texSubImage2D(0, 0, 0, 0, 0, 0, { get width() { throw 7 }, get height() { throw 7 }, data: new Uint8ClampedArray(10) });
|
||||
});
|
||||
});
|
||||
</script>
|
|
@ -1,33 +0,0 @@
|
|||
<!doctype html>
|
||||
<title>uniformMatrix*fv</title>
|
||||
<link rel=author href=mailto:Ms2ger@gmail.com title=Ms2ger>
|
||||
<link rel=help href=https://www.khronos.org/registry/webgl/specs/latest/#WebGLRenderingContext>
|
||||
<link rel=help href=http://dev.w3.org/2006/webapi/WebIDL/#es-boolean>
|
||||
<link rel=help href=http://es5.github.com/#x9.2>
|
||||
<script src=/resources/testharness.js></script>
|
||||
<script src=/resources/testharnessreport.js></script>
|
||||
<script src=common.js></script>
|
||||
|
||||
<div id=log></div>
|
||||
<script id="vshader" type="x-shader/x-vertex">
|
||||
uniform mat2 m2;
|
||||
uniform mat3 m3;
|
||||
uniform mat4 m4;
|
||||
</script>
|
||||
<script>
|
||||
var floatArray = function(n) {
|
||||
var a = [];
|
||||
for (var i = 0; i < n; ++i) {
|
||||
a.push(1);
|
||||
}
|
||||
return a;
|
||||
};
|
||||
[2, 3, 4].forEach(function(n) {
|
||||
test(function() {
|
||||
var gl = getGl();
|
||||
var f = "uniformMatrix" + n + "fv";
|
||||
var loc = gl.getUniformLocation(gl.createProgram(), "m" + n);
|
||||
gl[f](loc, { valueOf: function() { throw "Error"; } }, floatArray(n));
|
||||
}, "Should not throw for " + n);
|
||||
});
|
||||
</script>
|
|
@ -10571,9 +10571,7 @@
|
|||
"conformance/canvas/rapid-resizing.html": [
|
||||
[
|
||||
"/_webgl/conformance/canvas/rapid-resizing.html",
|
||||
{
|
||||
"timeout": "long"
|
||||
}
|
||||
{}
|
||||
]
|
||||
],
|
||||
"conformance/canvas/render-after-resize-test.html": [
|
||||
|
@ -10621,17 +10619,13 @@
|
|||
"conformance/context/context-creation-and-destruction.html": [
|
||||
[
|
||||
"/_webgl/conformance/context/context-creation-and-destruction.html",
|
||||
{
|
||||
"timeout": "long"
|
||||
}
|
||||
{}
|
||||
]
|
||||
],
|
||||
"conformance/context/context-creation.html": [
|
||||
[
|
||||
"/_webgl/conformance/context/context-creation.html",
|
||||
{
|
||||
"timeout": "long"
|
||||
}
|
||||
{}
|
||||
]
|
||||
],
|
||||
"conformance/context/context-eviction-with-garbage-collection.html": [
|
||||
|
@ -27576,7 +27570,7 @@
|
|||
"testharness"
|
||||
],
|
||||
"conformance/canvas/rapid-resizing.html": [
|
||||
"9991e9beec6e5880a4f939d314acc7a76dd31527",
|
||||
"f423e17f563da0751d96604adc64bbc0537a52bc",
|
||||
"testharness"
|
||||
],
|
||||
"conformance/canvas/render-after-resize-test.html": [
|
||||
|
@ -27612,11 +27606,11 @@
|
|||
"testharness"
|
||||
],
|
||||
"conformance/context/context-creation-and-destruction.html": [
|
||||
"3ad7a02d79cfbae4b9d7b6f6ee16cdc5d1a829dd",
|
||||
"a3912fcf7eaaf2992ec4a82de0c7262d929b035d",
|
||||
"testharness"
|
||||
],
|
||||
"conformance/context/context-creation.html": [
|
||||
"237258cc9d956acf6b821967c8010db22804e6df",
|
||||
"d8685e48fcb8e5f74132501fa31e00163212be54",
|
||||
"testharness"
|
||||
],
|
||||
"conformance/context/context-eviction-with-garbage-collection.html": [
|
||||
|
@ -46420,7 +46414,7 @@
|
|||
"support"
|
||||
],
|
||||
"js/js-test-pre.js": [
|
||||
"f2c8167240a232d1a5480a9b7635cc250062bbdb",
|
||||
"294bd4c5a21ccfa8b1ec4369a960304c4b2cf0f6",
|
||||
"support"
|
||||
],
|
||||
"js/pnglib.js": [
|
||||
|
@ -46636,7 +46630,7 @@
|
|||
"support"
|
||||
],
|
||||
"js/webgl-test-utils.js": [
|
||||
"5ab8b2cfd0794f3c15d7afad0fe98b0f75cff38b",
|
||||
"0ef194eacc296f083fe86a03cdbdb5f72317b516",
|
||||
"support"
|
||||
],
|
||||
"py/lint/LICENSE": [
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
[gl-vertex-attrib-render.html]
|
||||
bug: https://github.com/servo/servo/issues/21132
|
||||
type: testharness
|
||||
[WebGL test #0: Unable to fetch WebGL rendering context for Canvas]
|
||||
expected: FAIL
|
||||
|
||||
|
|
|
@ -1,25 +0,0 @@
|
|||
[gl-vertex-attrib.html]
|
||||
[WebGL test #979: getError expected: INVALID_VALUE. Was INVALID_OPERATION : ]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #978: getError expected: INVALID_VALUE. Was INVALID_OPERATION : ]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #976: getError expected: INVALID_VALUE. Was INVALID_OPERATION : ]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #980: getError expected: INVALID_VALUE. Was INVALID_OPERATION : ]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #975: getError expected: INVALID_VALUE. Was INVALID_OPERATION : ]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #977: getError expected: INVALID_VALUE. Was INVALID_OPERATION : ]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #982: getError expected: INVALID_VALUE. Was INVALID_OPERATION : ]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #981: getError expected: INVALID_VALUE. Was INVALID_OPERATION : ]
|
||||
expected: FAIL
|
||||
|
|
@ -1,4 +0,0 @@
|
|||
[gl-vertexattribpointer.html]
|
||||
[WebGL test #3: getError expected: NO_ERROR. Was INVALID_OPERATION : vertexAttribPointer should succeed if no buffer is bound and `offset` is zero.]
|
||||
expected: FAIL
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
[buffer-data-and-buffer-sub-data.html]
|
||||
expected: ERROR
|
||||
[WebGL test #27: successfullyParsed should be true (of type boolean). Was undefined (of type undefined).]
|
||||
expected: FAIL
|
||||
|
|
@ -1,6 +1,5 @@
|
|||
[buffer-data-array-buffer-delete.html]
|
||||
bug: https://github.com/servo/servo/issues/21132
|
||||
type: testharness
|
||||
expected: ERROR
|
||||
[WebGL test #0: Unable to fetch WebGL rendering context for Canvas]
|
||||
expected: FAIL
|
||||
|
@ -8,6 +7,3 @@
|
|||
[WebGL test #1: gl should be non-null. Was null]
|
||||
expected: FAIL
|
||||
|
||||
[Overall test]
|
||||
expected: NOTRUN
|
||||
|
||||
|
|
|
@ -1,6 +1,3 @@
|
|||
[canvas-test.html]
|
||||
type: testharness
|
||||
expected: ERROR
|
||||
[Overall test]
|
||||
expected: NOTRUN
|
||||
|
||||
|
|
|
@ -1,6 +1,3 @@
|
|||
[draw-static-webgl-to-multiple-canvas-test.html]
|
||||
type: testharness
|
||||
expected: ERROR
|
||||
[Overall test]
|
||||
expected: NOTRUN
|
||||
|
||||
|
|
|
@ -1,6 +1,3 @@
|
|||
[draw-webgl-to-canvas-test.html]
|
||||
type: testharness
|
||||
expected: ERROR
|
||||
[Overall test]
|
||||
expected: NOTRUN
|
||||
|
||||
|
|
|
@ -1,3 +1,2 @@
|
|||
[drawingbuffer-static-canvas-test.html]
|
||||
type: testharness
|
||||
expected: CRASH
|
||||
|
|
|
@ -1,3 +1,2 @@
|
|||
[drawingbuffer-test.html]
|
||||
type: testharness
|
||||
expected: CRASH
|
||||
|
|
|
@ -1,11 +1,3 @@
|
|||
[rapid-resizing.html]
|
||||
expected: TIMEOUT
|
||||
[WebGL test #0: Unable to fetch WebGL rendering context for Canvas]
|
||||
expected: FAIL
|
||||
|
||||
[Overall test]
|
||||
expected: NOTRUN
|
||||
|
||||
[WebGL test #1: context does not exist]
|
||||
expected: FAIL
|
||||
disabled: https://github.com/servo/servo/issues/21132
|
||||
|
||||
|
|
|
@ -1,6 +1,2 @@
|
|||
[to-data-url-test.html]
|
||||
type: testharness
|
||||
expected: ERROR
|
||||
[Overall test]
|
||||
expected: NOTRUN
|
||||
|
||||
|
|
|
@ -1,7 +0,0 @@
|
|||
[constants-and-properties.html]
|
||||
[WebGL test #2: Also found the following extra properties:]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #3: STENCIL_INDEX]
|
||||
expected: FAIL
|
||||
|
|
@ -1,7 +1,3 @@
|
|||
[context-attribute-preserve-drawing-buffer.html]
|
||||
bug: https://github.com/servo/servo/issues/21132
|
||||
type: testharness
|
||||
expected: ERROR
|
||||
[Overall test]
|
||||
expected: NOTRUN
|
||||
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
[context-attributes-alpha-depth-stencil-antialias.html]
|
||||
bug: https://github.com/servo/servo/issues/21285
|
||||
type: testharness
|
||||
[WebGL test #96: redChannels[0\] != 255 && redChannels[0\] != 0 should be true. Was false.]
|
||||
expected: FAIL
|
||||
|
||||
|
|
|
@ -1,5 +0,0 @@
|
|||
[context-creation-and-destruction.html]
|
||||
expected: TIMEOUT
|
||||
[Overall test]
|
||||
expected: NOTRUN
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
[context-creation.html]
|
||||
expected: TIMEOUT
|
||||
[Overall test]
|
||||
expected: NOTRUN
|
||||
|
|
@ -1,6 +1,5 @@
|
|||
[context-lost.html]
|
||||
bug: https://github.com/servo/servo/issues/15266
|
||||
type: testharness
|
||||
[WebGL test #0: gl.isContextLost() should be false. Threw exception TypeError: gl.isContextLost is not a function]
|
||||
expected: FAIL
|
||||
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
[premultiplyalpha-test.html]
|
||||
bug: https://github.com/servo/servo/issues/21132
|
||||
type: testharness
|
||||
expected: ERROR
|
||||
[WebGL test #0: Unable to fetch WebGL rendering context for Canvas]
|
||||
expected: FAIL
|
||||
|
@ -11,6 +10,3 @@
|
|||
[WebGL test #2: gl.getContextAttributes().preserveDrawingBuffer should be true. Threw exception TypeError: gl is null]
|
||||
expected: FAIL
|
||||
|
||||
[Overall test]
|
||||
expected: NOTRUN
|
||||
|
||||
|
|
|
@ -1,5 +1,50 @@
|
|||
[oes-texture-float-with-canvas.html]
|
||||
expected: TIMEOUT
|
||||
[Overall test]
|
||||
expected: NOTRUN
|
||||
expected: ERROR
|
||||
[WebGL test #31: shouldBe 127,0,0,127\nat (0, 16) expected: 127,0,0,127 was 255,0,0,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #19: shouldBe 127,0,0,127\nat (0, 0) expected: 127,0,0,127 was 255,0,0,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #12: shouldBe 0,127,0,127\nat (0, 0) expected: 0,127,0,127 was 0,255,0,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #15: shouldBe 0,127,0,127\nat (0, 16) expected: 0,127,0,127 was 0,255,0,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #14: shouldBe 127,0,0,127\nat (0, 0) expected: 127,0,0,127 was 255,0,0,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #40: shouldBe 0,127,0,127\nat (0, 16) expected: 0,127,0,127 was 0,255,0,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #34: shouldBe 127,0,0,127\nat (0, 0) expected: 127,0,0,127 was 255,0,0,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #20: shouldBe 0,127,0,127\nat (0, 16) expected: 0,127,0,127 was 0,255,0,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #39: shouldBe 127,0,0,127\nat (0, 0) expected: 127,0,0,127 was 255,0,0,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #11: shouldBe 127,0,0,127\nat (0, 16) expected: 127,0,0,127 was 255,0,0,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #17: shouldBe 127,0,0,127\nat (0, 16) expected: 127,0,0,127 was 255,0,0,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #35: shouldBe 0,127,0,127\nat (0, 16) expected: 0,127,0,127 was 0,255,0,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #37: shouldBe 127,0,0,127\nat (0, 16) expected: 127,0,0,127 was 255,0,0,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #32: shouldBe 0,127,0,127\nat (0, 0) expected: 0,127,0,127 was 0,255,0,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #38: shouldBe 0,127,0,127\nat (0, 0) expected: 0,127,0,127 was 0,255,0,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #18: shouldBe 0,127,0,127\nat (0, 0) expected: 0,127,0,127 was 0,255,0,255]
|
||||
expected: FAIL
|
||||
|
||||
|
|
|
@ -1,3 +1,2 @@
|
|||
[oes-texture-float-with-video.html]
|
||||
type: testharness
|
||||
disabled: flaky
|
||||
|
|
|
@ -1,5 +1,50 @@
|
|||
[oes-texture-half-float-with-canvas.html]
|
||||
expected: TIMEOUT
|
||||
[Overall test]
|
||||
expected: NOTRUN
|
||||
expected: ERROR
|
||||
[WebGL test #31: shouldBe 127,0,0,127\nat (0, 16) expected: 127,0,0,127 was 255,0,0,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #19: shouldBe 127,0,0,127\nat (0, 0) expected: 127,0,0,127 was 255,0,0,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #12: shouldBe 0,127,0,127\nat (0, 0) expected: 0,127,0,127 was 0,255,0,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #15: shouldBe 0,127,0,127\nat (0, 16) expected: 0,127,0,127 was 0,255,0,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #14: shouldBe 127,0,0,127\nat (0, 0) expected: 127,0,0,127 was 255,0,0,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #40: shouldBe 0,127,0,127\nat (0, 16) expected: 0,127,0,127 was 0,255,0,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #34: shouldBe 127,0,0,127\nat (0, 0) expected: 127,0,0,127 was 255,0,0,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #20: shouldBe 0,127,0,127\nat (0, 16) expected: 0,127,0,127 was 0,255,0,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #39: shouldBe 127,0,0,127\nat (0, 0) expected: 127,0,0,127 was 255,0,0,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #11: shouldBe 127,0,0,127\nat (0, 16) expected: 127,0,0,127 was 255,0,0,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #17: shouldBe 127,0,0,127\nat (0, 16) expected: 127,0,0,127 was 255,0,0,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #35: shouldBe 0,127,0,127\nat (0, 16) expected: 0,127,0,127 was 0,255,0,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #37: shouldBe 127,0,0,127\nat (0, 16) expected: 127,0,0,127 was 255,0,0,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #32: shouldBe 0,127,0,127\nat (0, 0) expected: 0,127,0,127 was 0,255,0,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #38: shouldBe 0,127,0,127\nat (0, 0) expected: 0,127,0,127 was 0,255,0,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #18: shouldBe 0,127,0,127\nat (0, 0) expected: 0,127,0,127 was 0,255,0,255]
|
||||
expected: FAIL
|
||||
|
||||
|
|
|
@ -1,3 +1,2 @@
|
|||
[oes-texture-half-float-with-video.html]
|
||||
type: testharness
|
||||
disabled: flaky
|
||||
|
|
|
@ -1,2 +1,4 @@
|
|||
[oes-texture-half-float.html]
|
||||
expected: CRASH
|
||||
[WebGL test #72: RGBA/HALF_FLOAT_OES is color renderable but EXT_color_buffer_half_float not exposed]
|
||||
expected: FAIL
|
||||
|
||||
|
|
|
@ -1,25 +0,0 @@
|
|||
[oes-vertex-array-object.html]
|
||||
[WebGL test #74: References from unbound VAOs keep Color buffer alive]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #65: References from unbound VAOs keep Color buffer alive]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #68: References from unbound VAOs keep Color buffer alive]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #73: References from unbound VAOs keep Position buffer alive.]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #71: References from unbound VAOs keep Color buffer alive]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #70: References from unbound VAOs keep Position buffer alive.]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #64: References from unbound VAOs keep Position buffer alive.]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #67: References from unbound VAOs keep Position buffer alive.]
|
||||
expected: FAIL
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
[webgl-compressed-texture-size-limit.html]
|
||||
expected: TIMEOUT
|
||||
[Overall test]
|
||||
expected: NOTRUN
|
||||
|
|
@ -1,4 +1,5 @@
|
|||
[fragcolor-fragdata-invariant.html]
|
||||
bug: https://github.com/servo/servo/issues/20601
|
||||
[WebGL test #0: [unexpected fragment shader compile status\] (expected: true) Declaring both gl_FragColor and gl_FragData invariant should succeed.]
|
||||
expected: FAIL
|
||||
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
[shader-with-define-line-continuation.frag.html]
|
||||
bug: https://github.com/servo/servo/issues/20601
|
||||
type: testharness
|
||||
[WebGL test #0: [unexpected link status\] fragment shader that uses line continuation macro should fail]
|
||||
expected: FAIL
|
||||
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
[shader-with-global-variable-precision-mismatch.html]
|
||||
bug: https://github.com/servo/servo/issues/20601
|
||||
type: testharness
|
||||
[WebGL test #0: [unexpected link status\] mismatching precision for uniforms causes link error (as expected)]
|
||||
expected: FAIL
|
||||
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
[shaders-with-uniform-structs.html]
|
||||
bug: https://github.com/servo/servo/issues/20601
|
||||
type: testharness
|
||||
[WebGL test #5: [unexpected link status\] Structures must have the same type definitions (including precision) to be considered the same type.]
|
||||
expected: FAIL
|
||||
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
[shaders-with-varyings.html]
|
||||
bug: https://github.com/servo/servo/issues/20601
|
||||
type: testharness
|
||||
[WebGL test #3: [unexpected link status\] vertex shader with unused varying and fragment shader with used varying must succeed]
|
||||
expected: FAIL
|
||||
|
||||
|
|
|
@ -1,2 +0,0 @@
|
|||
[expando-loss.html]
|
||||
expected: CRASH
|
|
@ -1,21 +0,0 @@
|
|||
[type-conversion-test.html]
|
||||
bug: https://github.com/servo/servo/issues/20513
|
||||
type: testharness
|
||||
[WebGL test #340: context.bufferData(context.ARRAY_BUFFER, argument, context.STATIC_DRAW) should be undefined. Threw exception TypeError: Not an ArrayBufferView]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #407: context.bufferData(context.ARRAY_BUFFER, argument, context.STATIC_DRAW) should be undefined. Threw exception TypeError: Not an ArrayBufferView]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #474: context.bufferData(context.ARRAY_BUFFER, argument, context.STATIC_DRAW) should be undefined. Threw exception TypeError: Not an ArrayBufferView]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #541: context.bufferData(context.ARRAY_BUFFER, argument, context.STATIC_DRAW) should be undefined. Threw exception TypeError: Not an ArrayBufferView]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #608: context.bufferData(context.ARRAY_BUFFER, argument, context.STATIC_DRAW) should be undefined. Threw exception TypeError: Not an ArrayBufferView]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #675: context.bufferData(context.ARRAY_BUFFER, argument, context.STATIC_DRAW) should be undefined. Threw exception TypeError: Not an ArrayBufferView]
|
||||
expected: FAIL
|
||||
|
|
@ -1,3 +1,2 @@
|
|||
[uninitialized-test.html]
|
||||
type: testharness
|
||||
disabled: https://github.com/servo/servo/issues/13710
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
[methods.html]
|
||||
type: testharness
|
||||
bug: https://github.com/servo/servo/issues/15266
|
||||
[WebGL test #0: testOES20Methods]
|
||||
expected: FAIL
|
||||
|
||||
|
|
|
@ -1,3 +1,2 @@
|
|||
[quickCheckAPI-S_V.html]
|
||||
type: testharness
|
||||
expected: CRASH
|
||||
disabled: https://github.com/servo/servo/issues/10656
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
[readPixelsBadArgs.html]
|
||||
bug: https://github.com/servo/servo/issues/21522
|
||||
[WebGL test #1: testReadPixelsSOPIMG]
|
||||
expected: FAIL
|
||||
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
[texImage2DHTML.html]
|
||||
bug: https://github.com/servo/servo/issues/21522
|
||||
[WebGL test #1: testTexImage2DNonSOP]
|
||||
expected: FAIL
|
||||
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
[texSubImage2DHTML.html]
|
||||
bug: https://github.com/servo/servo/issues/21522
|
||||
[WebGL test #1: testTexImage2DNonSOP]
|
||||
expected: FAIL
|
||||
|
||||
|
|
|
@ -1,4 +0,0 @@
|
|||
[vertexAttribPointerBadArgs.html]
|
||||
[WebGL test #0: testVertexAttribPointerVBO]
|
||||
expected: FAIL
|
||||
|
|
@ -1,5 +1,4 @@
|
|||
[read-pixels-pack-alignment.html]
|
||||
type: testharness
|
||||
[WebGL test #17: pixel should be 255,102,0,255. Was 0,0,0,0.]
|
||||
expected: FAIL
|
||||
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
[read-pixels-test.html]
|
||||
type: testharness
|
||||
expected: TIMEOUT
|
||||
bug: https://github.com/servo/servo/issues/14380
|
||||
expected: TIMEOUT
|
||||
|
|
|
@ -1,3 +1,2 @@
|
|||
[depth-renderbuffer-initialization.html]
|
||||
type: testharness
|
||||
disabled: https://github.com/servo/servo/issues/13710
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
[feedback-loop.html]
|
||||
bug: https://github.com/servo/servo/issues/21288
|
||||
type: testharness
|
||||
[WebGL test #3: getError expected: INVALID_OPERATION. Was NO_ERROR : after draw with invalid feedback loop]
|
||||
expected: FAIL
|
||||
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
[framebuffer-object-attachment.html]
|
||||
type: testharness
|
||||
expected: CRASH
|
||||
[WebGL test #1: successfullyParsed should be true (of type boolean). Was undefined (of type undefined).]
|
||||
expected: FAIL
|
||||
|
|
|
@ -1,9 +1,5 @@
|
|||
[framebuffer-state-restoration.html]
|
||||
type: testharness
|
||||
expected: ERROR
|
||||
[WebGL test #0: Unable to fetch WebGL rendering context for Canvas]
|
||||
expected: FAIL
|
||||
|
||||
[Overall test]
|
||||
expected: NOTRUN
|
||||
|
||||
|
|
|
@ -1,3 +1,2 @@
|
|||
[renderbuffer-initialization.html]
|
||||
type: testharness
|
||||
disabled: https://github.com/servo/servo/issues/13710
|
||||
|
|
|
@ -1,3 +1,2 @@
|
|||
[stencil-renderbuffer-initialization.html]
|
||||
type: testharness
|
||||
disabled: https://github.com/servo/servo/issues/13710
|
||||
|
|
|
@ -1,4 +0,0 @@
|
|||
[draw-elements-out-of-bounds.html]
|
||||
[WebGL test #0: getError expected: INVALID_OPERATION. Was NO_ERROR : after evaluating: gl.drawElements(gl.TRIANGLES, 0, gl.UNSIGNED_BYTE, 0)]
|
||||
expected: FAIL
|
||||
|
|
@ -1,6 +1,2 @@
|
|||
[framebuffer-switch.html]
|
||||
type: testharness
|
||||
expected: ERROR
|
||||
[Overall test]
|
||||
expected: NOTRUN
|
||||
|
||||
|
|
|
@ -1,6 +1,2 @@
|
|||
[framebuffer-texture-switch.html]
|
||||
type: testharness
|
||||
expected: ERROR
|
||||
[Overall test]
|
||||
expected: NOTRUN
|
||||
|
||||
|
|
|
@ -1,10 +1,6 @@
|
|||
[multisample-corruption.html]
|
||||
bug: https://github.com/servo/servo/issues/21132
|
||||
type: testharness
|
||||
expected: ERROR
|
||||
[WebGL test #0: Unable to fetch WebGL rendering context for Canvas]
|
||||
expected: FAIL
|
||||
|
||||
[Overall test]
|
||||
expected: NOTRUN
|
||||
|
||||
|
|
|
@ -3,6 +3,3 @@
|
|||
[WebGL test #0: Unable to fetch WebGL rendering context for Canvas]
|
||||
expected: FAIL
|
||||
|
||||
[Overall test]
|
||||
expected: NOTRUN
|
||||
|
||||
|
|
|
@ -1,5 +0,0 @@
|
|||
[tex-2d-alpha-alpha-unsigned_byte.html]
|
||||
expected: TIMEOUT
|
||||
[Overall test]
|
||||
expected: NOTRUN
|
||||
|
|
@ -1,11 +1,98 @@
|
|||
[tex-2d-luminance-luminance-unsigned_byte.html]
|
||||
expected: TIMEOUT
|
||||
expected: ERROR
|
||||
[WebGL test #1: shouldBe 0,0,0,255\nat (0, 0) expected: 0,0,0,255 was 182,182,182,255]
|
||||
expected: FAIL
|
||||
|
||||
[Overall test]
|
||||
expected: NOTRUN
|
||||
|
||||
[WebGL test #0: shouldBe 255,255,255,255\nat (0, 16) expected: 255,255,255,255 was 54,54,54,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #21: shouldBe 0,0,0,255\nat (0, 0) expected: 0,0,0,255 was 182,182,182,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #4: shouldBe 255,255,255,255\nat (0, 16) expected: 255,255,255,255 was 54,54,54,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #9: shouldBe 0,0,0,255\nat (0, 0) expected: 0,0,0,255 was 89,89,89,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #28: shouldBe 127,127,127,255\nat (0, 16) expected: 127,127,127,255 was 26,26,26,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #7: shouldBe 0,0,0,255\nat (0, 16) expected: 0,0,0,255 was 182,182,182,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #12: shouldBe 127,127,127,255\nat (0, 16) expected: 127,127,127,255 was 26,26,26,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #29: shouldBe 0,0,0,255\nat (0, 0) expected: 0,0,0,255 was 89,89,89,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #13: shouldBe 0,0,0,255\nat (0, 0) expected: 0,0,0,255 was 89,89,89,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #22: shouldBe 255,255,255,255\nat (0, 0) expected: 255,255,255,255 was 54,54,54,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #20: shouldBe 255,255,255,255\nat (0, 16) expected: 255,255,255,255 was 54,54,54,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #30: shouldBe 127,127,127,255\nat (0, 0) expected: 127,127,127,255 was 26,26,26,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #27: shouldBe 0,0,0,255\nat (0, 16) expected: 0,0,0,255 was 89,89,89,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #15: shouldBe 0,0,0,255\nat (0, 16) expected: 0,0,0,255 was 89,89,89,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #3: shouldBe 0,0,0,255\nat (0, 16) expected: 0,0,0,255 was 182,182,182,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #17: shouldBe 0,0,0,255\nat (0, 0) expected: 0,0,0,255 was 182,182,182,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #14: shouldBe 127,127,127,255\nat (0, 0) expected: 127,127,127,255 was 26,26,26,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #5: shouldBe 0,0,0,255\nat (0, 0) expected: 0,0,0,255 was 182,182,182,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #24: shouldBe 127,127,127,255\nat (0, 16) expected: 127,127,127,255 was 26,26,26,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #31: shouldBe 0,0,0,255\nat (0, 16) expected: 0,0,0,255 was 89,89,89,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #25: shouldBe 0,0,0,255\nat (0, 0) expected: 0,0,0,255 was 89,89,89,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #8: shouldBe 127,127,127,255\nat (0, 16) expected: 127,127,127,255 was 26,26,26,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #2: shouldBe 255,255,255,255\nat (0, 0) expected: 255,255,255,255 was 54,54,54,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #10: shouldBe 127,127,127,255\nat (0, 0) expected: 127,127,127,255 was 26,26,26,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #18: shouldBe 255,255,255,255\nat (0, 0) expected: 255,255,255,255 was 54,54,54,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #6: shouldBe 255,255,255,255\nat (0, 0) expected: 255,255,255,255 was 54,54,54,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #23: shouldBe 0,0,0,255\nat (0, 16) expected: 0,0,0,255 was 182,182,182,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #19: shouldBe 0,0,0,255\nat (0, 16) expected: 0,0,0,255 was 182,182,182,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #16: shouldBe 255,255,255,255\nat (0, 16) expected: 255,255,255,255 was 54,54,54,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #26: shouldBe 127,127,127,255\nat (0, 0) expected: 127,127,127,255 was 26,26,26,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #11: shouldBe 0,0,0,255\nat (0, 16) expected: 0,0,0,255 was 89,89,89,255]
|
||||
expected: FAIL
|
||||
|
||||
|
|
|
@ -1,11 +1,98 @@
|
|||
[tex-2d-luminance_alpha-luminance_alpha-unsigned_byte.html]
|
||||
expected: TIMEOUT
|
||||
expected: ERROR
|
||||
[WebGL test #1: shouldBe 0,0,0,255\nat (0, 0) expected: 0,0,0,255 was 182,182,182,255]
|
||||
expected: FAIL
|
||||
|
||||
[Overall test]
|
||||
expected: NOTRUN
|
||||
|
||||
[WebGL test #0: shouldBe 255,255,255,255\nat (0, 16) expected: 255,255,255,255 was 54,54,54,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #31: shouldBe 0,0,0,127\nat (0, 16) expected: 0,0,0,127 was 89,89,89,128]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #21: shouldBe 0,0,0,255\nat (0, 0) expected: 0,0,0,255 was 182,182,182,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #8: shouldBe 127,127,127,127\nat (0, 16) expected: 127,127,127,127 was 26,26,26,128]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #15: shouldBe 0,0,0,127\nat (0, 16) expected: 0,0,0,127 was 89,89,89,128]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #4: shouldBe 255,255,255,255\nat (0, 16) expected: 255,255,255,255 was 54,54,54,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #9: shouldBe 0,0,0,127\nat (0, 0) expected: 0,0,0,127 was 89,89,89,128]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #7: shouldBe 0,0,0,255\nat (0, 16) expected: 0,0,0,255 was 182,182,182,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #20: shouldBe 255,255,255,255\nat (0, 16) expected: 255,255,255,255 was 54,54,54,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #30: shouldBe 127,127,127,127\nat (0, 0) expected: 127,127,127,127 was 26,26,26,128]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #22: shouldBe 255,255,255,255\nat (0, 0) expected: 255,255,255,255 was 54,54,54,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #10: shouldBe 127,127,127,127\nat (0, 0) expected: 127,127,127,127 was 26,26,26,128]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #5: shouldBe 0,0,0,255\nat (0, 0) expected: 0,0,0,255 was 182,182,182,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #13: shouldBe 0,0,0,127\nat (0, 0) expected: 0,0,0,127 was 89,89,89,128]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #3: shouldBe 0,0,0,255\nat (0, 16) expected: 0,0,0,255 was 182,182,182,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #17: shouldBe 0,0,0,255\nat (0, 0) expected: 0,0,0,255 was 182,182,182,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #11: shouldBe 0,0,0,127\nat (0, 16) expected: 0,0,0,127 was 89,89,89,128]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #14: shouldBe 127,127,127,127\nat (0, 0) expected: 127,127,127,127 was 26,26,26,128]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #25: shouldBe 0,0,0,127\nat (0, 0) expected: 0,0,0,127 was 89,89,89,128]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #24: shouldBe 127,127,127,127\nat (0, 16) expected: 127,127,127,127 was 26,26,26,128]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #28: shouldBe 127,127,127,127\nat (0, 16) expected: 127,127,127,127 was 26,26,26,128]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #12: shouldBe 127,127,127,127\nat (0, 16) expected: 127,127,127,127 was 26,26,26,128]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #27: shouldBe 0,0,0,127\nat (0, 16) expected: 0,0,0,127 was 89,89,89,128]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #26: shouldBe 127,127,127,127\nat (0, 0) expected: 127,127,127,127 was 26,26,26,128]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #2: shouldBe 255,255,255,255\nat (0, 0) expected: 255,255,255,255 was 54,54,54,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #29: shouldBe 0,0,0,127\nat (0, 0) expected: 0,0,0,127 was 89,89,89,128]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #18: shouldBe 255,255,255,255\nat (0, 0) expected: 255,255,255,255 was 54,54,54,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #6: shouldBe 255,255,255,255\nat (0, 0) expected: 255,255,255,255 was 54,54,54,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #23: shouldBe 0,0,0,255\nat (0, 16) expected: 0,0,0,255 was 182,182,182,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #19: shouldBe 0,0,0,255\nat (0, 16) expected: 0,0,0,255 was 182,182,182,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #16: shouldBe 255,255,255,255\nat (0, 16) expected: 255,255,255,255 was 54,54,54,255]
|
||||
expected: FAIL
|
||||
|
||||
|
|
|
@ -1,5 +1,2 @@
|
|||
[tex-2d-rgb-rgb-unsigned_byte.html]
|
||||
expected: TIMEOUT
|
||||
[Overall test]
|
||||
expected: NOTRUN
|
||||
|
||||
expected: ERROR
|
||||
|
|
|
@ -1,5 +1,2 @@
|
|||
[tex-2d-rgb-rgb-unsigned_short_5_6_5.html]
|
||||
expected: TIMEOUT
|
||||
[Overall test]
|
||||
expected: NOTRUN
|
||||
|
||||
expected: ERROR
|
||||
|
|
|
@ -1,5 +1,2 @@
|
|||
[tex-2d-rgba-rgba-unsigned_byte.html]
|
||||
expected: TIMEOUT
|
||||
[Overall test]
|
||||
expected: NOTRUN
|
||||
|
||||
expected: ERROR
|
||||
|
|
|
@ -1,5 +1,2 @@
|
|||
[tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html]
|
||||
expected: TIMEOUT
|
||||
[Overall test]
|
||||
expected: NOTRUN
|
||||
|
||||
expected: ERROR
|
||||
|
|
|
@ -1,5 +1,2 @@
|
|||
[tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html]
|
||||
expected: TIMEOUT
|
||||
[Overall test]
|
||||
expected: NOTRUN
|
||||
|
||||
expected: ERROR
|
||||
|
|
|
@ -1,29 +0,0 @@
|
|||
[copy-tex-image-2d-formats.html]
|
||||
type: testharness
|
||||
[WebGL test #16: Creating framebuffer from ALPHA texture succeeded even though it is not a renderable format]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #17: Creating framebuffer from LUMINANCE texture succeeded even though it is not a renderable format]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #18: Creating framebuffer from LUMINANCE_ALPHA texture succeeded even though it is not a renderable format]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #19: getError expected: INVALID_OPERATION. Was NO_ERROR : should not be able to copyTexImage2D ALPHA from RGB]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #23: getError expected: INVALID_OPERATION. Was NO_ERROR : should not be able to copyTexImage2D LUMINANCE_ALPHA from RGB]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #27: getError expected: INVALID_OPERATION. Was NO_ERROR : should not be able to copyTexImage2D RGBA from RGB]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #44: getError expected: INVALID_OPERATION. Was NO_ERROR : should not be able to copyTexImage2D ALPHA from RGB]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #48: getError expected: INVALID_OPERATION. Was NO_ERROR : should not be able to copyTexImage2D LUMINANCE_ALPHA from RGB]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #52: getError expected: INVALID_OPERATION. Was NO_ERROR : should not be able to copyTexImage2D RGBA from RGB]
|
||||
expected: FAIL
|
||||
|
|
@ -1,578 +0,0 @@
|
|||
[copy-tex-image-and-sub-image-2d.html]
|
||||
type: testharness
|
||||
[WebGL test #85: at (1, 1) expected: 0,0,0,0 was 255,0,0,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #90: at (1, 1) expected: 0,0,0,0 was 0,255,0,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #94: at (0, 1) expected: 0,0,0,0 was 0,0,255,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #95: at (1, 1) expected: 0,0,0,0 was 0,0,255,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #99: at (0, 1) expected: 0,0,0,0 was 128,128,128,128]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #100: at (1, 1) expected: 0,0,0,0 was 128,128,128,128]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #104: at (0, 1) expected: 0,0,0,0 was 128,128,128,128]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #105: at (1, 1) expected: 0,0,0,0 was 128,128,128,128]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #109: at (0, 1) expected: 0,0,0,0 was 128,128,128,128]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #110: at (1, 1) expected: 0,0,0,0 was 128,128,128,128]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #114: at (0, 1) expected: 0,0,0,0 was 128,128,128,128]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #119: at (0, 1) expected: 0,0,0,0 was 128,128,128,128]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #133: at (1, 0) expected: 0,0,0,0 was 0,0,255,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #135: at (1, 1) expected: 0,0,0,0 was 0,0,255,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #138: at (1, 0) expected: 0,0,0,0 was 128,128,128,128]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #140: at (1, 1) expected: 0,0,0,0 was 128,128,128,128]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #142: at (0, 0) expected: 0,0,0,0 was 255,0,0,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #143: at (1, 0) expected: 0,0,0,0 was 255,0,0,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #144: at (0, 1) expected: 0,0,0,0 was 255,0,0,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #145: at (1, 1) expected: 0,0,0,0 was 255,0,0,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #147: at (0, 0) expected: 0,0,0,0 was 0,255,0,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #148: at (1, 0) expected: 0,0,0,0 was 0,255,0,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #149: at (0, 1) expected: 0,0,0,0 was 0,255,0,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #150: at (1, 1) expected: 0,0,0,0 was 0,255,0,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #152: at (0, 0) expected: 0,0,0,0 was 0,255,0,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #153: at (1, 0) expected: 0,0,0,0 was 0,255,0,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #154: at (0, 1) expected: 0,0,0,0 was 0,255,0,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #155: at (1, 1) expected: 0,0,0,0 was 0,255,0,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #157: at (0, 0) expected: 0,0,0,0 was 0,255,0,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #158: at (1, 0) expected: 0,0,0,0 was 0,255,0,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #159: at (0, 1) expected: 0,0,0,0 was 0,255,0,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #160: at (1, 1) expected: 0,0,0,0 was 0,255,0,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #162: at (0, 0) expected: 0,0,0,0 was 0,255,0,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #164: at (0, 1) expected: 0,0,0,0 was 0,255,0,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #165: at (1, 1) expected: 0,0,0,0 was 255,0,0,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #167: at (0, 0) expected: 0,0,0,0 was 0,255,0,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #169: at (0, 1) expected: 0,0,0,0 was 0,255,0,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #170: at (1, 1) expected: 0,0,0,0 was 0,255,0,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #174: at (0, 1) expected: 0,0,0,0 was 0,0,255,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #175: at (1, 1) expected: 0,0,0,0 was 0,0,255,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #179: at (0, 1) expected: 0,0,0,0 was 128,128,128,128]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #180: at (1, 1) expected: 0,0,0,0 was 128,128,128,128]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #183: at (1, 0) expected: 0,0,0,0 was 255,0,0,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #184: at (0, 1) expected: 0,0,0,0 was 255,0,0,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #185: at (1, 1) expected: 0,0,0,0 was 255,0,0,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #188: at (1, 0) expected: 0,0,0,0 was 0,255,0,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #189: at (0, 1) expected: 0,0,0,0 was 0,255,0,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #190: at (1, 1) expected: 0,0,0,0 was 0,255,0,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #192: at (0, 0) expected: 0,0,0,0 was 0,0,255,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #193: at (1, 0) expected: 0,0,0,0 was 0,0,255,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #194: at (0, 1) expected: 0,0,0,0 was 0,0,255,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #195: at (1, 1) expected: 0,0,0,0 was 0,0,255,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #197: at (0, 0) expected: 0,0,0,0 was 128,128,128,128]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #198: at (1, 0) expected: 0,0,0,0 was 128,128,128,128]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #199: at (0, 1) expected: 0,0,0,0 was 128,128,128,128]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #200: at (1, 1) expected: 0,0,0,0 was 128,128,128,128]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #202: at (0, 0) expected: 0,0,0,0 was 128,128,128,128]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #203: at (1, 0) expected: 0,0,0,0 was 128,128,128,128]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #204: at (0, 1) expected: 0,0,0,0 was 128,128,128,128]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #205: at (1, 1) expected: 0,0,0,0 was 128,128,128,128]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #207: at (0, 0) expected: 0,0,0,0 was 128,128,128,128]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #208: at (1, 0) expected: 0,0,0,0 was 128,128,128,128]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #209: at (0, 1) expected: 0,0,0,0 was 128,128,128,128]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #210: at (1, 1) expected: 0,0,0,0 was 128,128,128,128]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #212: at (0, 0) expected: 0,0,0,0 was 128,128,128,128]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #213: at (1, 0) expected: 0,0,0,0 was 0,0,255,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #214: at (0, 1) expected: 0,0,0,0 was 128,128,128,128]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #215: at (1, 1) expected: 0,0,0,0 was 0,0,255,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #217: at (0, 0) expected: 0,0,0,0 was 128,128,128,128]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #218: at (1, 0) expected: 0,0,0,0 was 128,128,128,128]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #219: at (0, 1) expected: 0,0,0,0 was 128,128,128,128]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #220: at (1, 1) expected: 0,0,0,0 was 128,128,128,128]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #222: at (0, 0) expected: 0,0,0,0 was 255,0,0,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #223: at (1, 0) expected: 0,0,0,0 was 255,0,0,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #224: at (0, 1) expected: 0,0,0,0 was 255,0,0,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #225: at (1, 1) expected: 0,0,0,0 was 255,0,0,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #227: at (0, 0) expected: 0,0,0,0 was 0,255,0,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #228: at (1, 0) expected: 0,0,0,0 was 0,255,0,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #229: at (0, 1) expected: 0,0,0,0 was 0,255,0,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #230: at (1, 1) expected: 0,0,0,0 was 0,255,0,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #232: at (0, 0) expected: 0,0,0,0 was 0,0,255,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #233: at (1, 0) expected: 0,0,0,0 was 0,0,255,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #234: at (0, 1) expected: 0,0,0,0 was 0,0,255,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #235: at (1, 1) expected: 0,0,0,0 was 0,0,255,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #237: at (0, 0) expected: 0,0,0,0 was 128,128,128,128]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #238: at (1, 0) expected: 0,0,0,0 was 128,128,128,128]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #239: at (0, 1) expected: 0,0,0,0 was 128,128,128,128]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #240: at (1, 1) expected: 0,0,0,0 was 128,128,128,128]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #242: at (0, 0) expected: 0,0,0,0 was 255,0,0,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #243: at (1, 0) expected: 0,0,0,0 was 255,0,0,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #244: at (0, 1) expected: 0,0,0,0 was 255,0,0,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #245: at (1, 1) expected: 0,0,0,0 was 255,0,0,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #247: at (0, 0) expected: 0,0,0,0 was 0,255,0,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #248: at (1, 0) expected: 0,0,0,0 was 0,255,0,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #249: at (0, 1) expected: 0,0,0,0 was 0,255,0,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #250: at (1, 1) expected: 0,0,0,0 was 0,255,0,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #336: at (1, 1) expected: 0,0,0,0 was 255,0,0,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #341: at (1, 1) expected: 0,0,0,0 was 0,255,0,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #345: at (0, 1) expected: 0,0,0,0 was 0,0,255,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #346: at (1, 1) expected: 0,0,0,0 was 0,0,255,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #350: at (0, 1) expected: 0,0,0,0 was 128,128,128,128]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #351: at (1, 1) expected: 0,0,0,0 was 128,128,128,128]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #355: at (0, 1) expected: 0,0,0,0 was 128,128,128,128]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #356: at (1, 1) expected: 0,0,0,0 was 128,128,128,128]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #360: at (0, 1) expected: 0,0,0,0 was 128,128,128,128]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #361: at (1, 1) expected: 0,0,0,0 was 128,128,128,128]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #365: at (0, 1) expected: 0,0,0,0 was 128,128,128,128]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #370: at (0, 1) expected: 0,0,0,0 was 128,128,128,128]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #384: at (1, 0) expected: 0,0,0,0 was 0,0,255,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #386: at (1, 1) expected: 0,0,0,0 was 0,0,255,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #389: at (1, 0) expected: 0,0,0,0 was 128,128,128,128]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #391: at (1, 1) expected: 0,0,0,0 was 128,128,128,128]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #393: at (0, 0) expected: 0,0,0,0 was 255,0,0,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #394: at (1, 0) expected: 0,0,0,0 was 255,0,0,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #395: at (0, 1) expected: 0,0,0,0 was 255,0,0,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #396: at (1, 1) expected: 0,0,0,0 was 255,0,0,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #398: at (0, 0) expected: 0,0,0,0 was 0,255,0,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #399: at (1, 0) expected: 0,0,0,0 was 0,255,0,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #400: at (0, 1) expected: 0,0,0,0 was 0,255,0,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #401: at (1, 1) expected: 0,0,0,0 was 0,255,0,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #403: at (0, 0) expected: 0,0,0,0 was 0,255,0,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #404: at (1, 0) expected: 0,0,0,0 was 0,255,0,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #405: at (0, 1) expected: 0,0,0,0 was 0,255,0,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #406: at (1, 1) expected: 0,0,0,0 was 0,255,0,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #408: at (0, 0) expected: 0,0,0,0 was 0,255,0,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #409: at (1, 0) expected: 0,0,0,0 was 0,255,0,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #410: at (0, 1) expected: 0,0,0,0 was 0,255,0,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #411: at (1, 1) expected: 0,0,0,0 was 0,255,0,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #413: at (0, 0) expected: 0,0,0,0 was 0,255,0,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #415: at (0, 1) expected: 0,0,0,0 was 0,255,0,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #416: at (1, 1) expected: 0,0,0,0 was 255,0,0,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #418: at (0, 0) expected: 0,0,0,0 was 0,255,0,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #420: at (0, 1) expected: 0,0,0,0 was 0,255,0,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #421: at (1, 1) expected: 0,0,0,0 was 0,255,0,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #425: at (0, 1) expected: 0,0,0,0 was 0,0,255,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #426: at (1, 1) expected: 0,0,0,0 was 0,0,255,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #430: at (0, 1) expected: 0,0,0,0 was 128,128,128,128]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #431: at (1, 1) expected: 0,0,0,0 was 128,128,128,128]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #434: at (1, 0) expected: 0,0,0,0 was 255,0,0,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #435: at (0, 1) expected: 0,0,0,0 was 255,0,0,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #436: at (1, 1) expected: 0,0,0,0 was 255,0,0,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #439: at (1, 0) expected: 0,0,0,0 was 0,255,0,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #440: at (0, 1) expected: 0,0,0,0 was 0,255,0,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #441: at (1, 1) expected: 0,0,0,0 was 0,255,0,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #443: at (0, 0) expected: 0,0,0,0 was 0,0,255,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #444: at (1, 0) expected: 0,0,0,0 was 0,0,255,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #445: at (0, 1) expected: 0,0,0,0 was 0,0,255,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #446: at (1, 1) expected: 0,0,0,0 was 0,0,255,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #448: at (0, 0) expected: 0,0,0,0 was 128,128,128,128]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #449: at (1, 0) expected: 0,0,0,0 was 128,128,128,128]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #450: at (0, 1) expected: 0,0,0,0 was 128,128,128,128]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #451: at (1, 1) expected: 0,0,0,0 was 128,128,128,128]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #453: at (0, 0) expected: 0,0,0,0 was 128,128,128,128]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #454: at (1, 0) expected: 0,0,0,0 was 128,128,128,128]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #455: at (0, 1) expected: 0,0,0,0 was 128,128,128,128]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #456: at (1, 1) expected: 0,0,0,0 was 128,128,128,128]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #458: at (0, 0) expected: 0,0,0,0 was 128,128,128,128]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #459: at (1, 0) expected: 0,0,0,0 was 128,128,128,128]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #460: at (0, 1) expected: 0,0,0,0 was 128,128,128,128]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #461: at (1, 1) expected: 0,0,0,0 was 128,128,128,128]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #463: at (0, 0) expected: 0,0,0,0 was 128,128,128,128]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #464: at (1, 0) expected: 0,0,0,0 was 0,0,255,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #465: at (0, 1) expected: 0,0,0,0 was 128,128,128,128]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #466: at (1, 1) expected: 0,0,0,0 was 0,0,255,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #468: at (0, 0) expected: 0,0,0,0 was 128,128,128,128]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #469: at (1, 0) expected: 0,0,0,0 was 128,128,128,128]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #470: at (0, 1) expected: 0,0,0,0 was 128,128,128,128]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #471: at (1, 1) expected: 0,0,0,0 was 128,128,128,128]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #473: at (0, 0) expected: 0,0,0,0 was 255,0,0,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #474: at (1, 0) expected: 0,0,0,0 was 255,0,0,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #475: at (0, 1) expected: 0,0,0,0 was 255,0,0,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #476: at (1, 1) expected: 0,0,0,0 was 255,0,0,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #478: at (0, 0) expected: 0,0,0,0 was 0,255,0,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #479: at (1, 0) expected: 0,0,0,0 was 0,255,0,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #480: at (0, 1) expected: 0,0,0,0 was 0,255,0,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #481: at (1, 1) expected: 0,0,0,0 was 0,255,0,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #483: at (0, 0) expected: 0,0,0,0 was 0,0,255,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #484: at (1, 0) expected: 0,0,0,0 was 0,0,255,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #485: at (0, 1) expected: 0,0,0,0 was 0,0,255,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #486: at (1, 1) expected: 0,0,0,0 was 0,0,255,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #488: at (0, 0) expected: 0,0,0,0 was 128,128,128,128]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #489: at (1, 0) expected: 0,0,0,0 was 128,128,128,128]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #490: at (0, 1) expected: 0,0,0,0 was 128,128,128,128]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #491: at (1, 1) expected: 0,0,0,0 was 128,128,128,128]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #493: at (0, 0) expected: 0,0,0,0 was 255,0,0,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #494: at (1, 0) expected: 0,0,0,0 was 255,0,0,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #495: at (0, 1) expected: 0,0,0,0 was 255,0,0,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #496: at (1, 1) expected: 0,0,0,0 was 255,0,0,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #498: at (0, 0) expected: 0,0,0,0 was 0,255,0,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #499: at (1, 0) expected: 0,0,0,0 was 0,255,0,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #500: at (0, 1) expected: 0,0,0,0 was 0,255,0,255]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #501: at (1, 1) expected: 0,0,0,0 was 0,255,0,255]
|
||||
expected: FAIL
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
[gl-pixelstorei.html]
|
||||
type: testharness
|
||||
expected: ERROR
|
||||
[WebGL test #0: successfullyParsed should be true (of type boolean). Was undefined (of type undefined).]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL pixelStorei Test]
|
||||
expected: FAIL
|
||||
|
|
@ -3,6 +3,3 @@
|
|||
[WebGL test #0: Unable to fetch WebGL rendering context for Canvas]
|
||||
expected: FAIL
|
||||
|
||||
[Overall test]
|
||||
expected: NOTRUN
|
||||
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
[texture-copying-feedback-loops.html]
|
||||
bug: https://github.com/servo/servo/issues/21288
|
||||
[WebGL test #3: getError expected: INVALID_OPERATION. Was NO_ERROR : after copyTexImage2D to same texture same level, invalid feedback loop]
|
||||
expected: FAIL
|
||||
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
[texture-corner-case-videos.html]
|
||||
expected: TIMEOUT
|
||||
[Overall test]
|
||||
expected: NOTRUN
|
||||
disabled: https://github.com/servo/servo/issues/6711
|
||||
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
[texture-npot-video.html]
|
||||
expected: TIMEOUT
|
||||
[Overall test]
|
||||
expected: NOTRUN
|
||||
disabled: https://github.com/servo/servo/issues/6711
|
||||
|
||||
|
|
|
@ -1,5 +0,0 @@
|
|||
[texture-size-limit.html]
|
||||
expected: TIMEOUT
|
||||
[Overall test]
|
||||
expected: NOTRUN
|
||||
|
|
@ -1,14 +0,0 @@
|
|||
[origin-clean-conformance.html]
|
||||
type: testharness
|
||||
[WebGL test #2: texImage2D with cross-origin image should throw exception.]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #3: texSubImage2D with cross-origin image should throw exception.]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #7: texImage2D with NON origin clean canvas should throw exception.]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #8: texSubImage2D with NON origin clean canvas should throw exception.]
|
||||
expected: FAIL
|
||||
|
|
@ -0,0 +1 @@
|
|||
disabled: SVG support is not implemented yet
|
|
@ -1,5 +0,0 @@
|
|||
[tex-2d-alpha-alpha-unsigned_byte.html]
|
||||
expected: TIMEOUT
|
||||
[Overall test]
|
||||
expected: NOTRUN
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
[tex-2d-luminance-luminance-unsigned_byte.html]
|
||||
expected: TIMEOUT
|
||||
[Overall test]
|
||||
expected: NOTRUN
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
[tex-2d-luminance_alpha-luminance_alpha-unsigned_byte.html]
|
||||
expected: TIMEOUT
|
||||
[Overall test]
|
||||
expected: NOTRUN
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
[tex-2d-rgb-rgb-unsigned_byte.html]
|
||||
expected: TIMEOUT
|
||||
[Overall test]
|
||||
expected: NOTRUN
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
[tex-2d-rgb-rgb-unsigned_short_5_6_5.html]
|
||||
expected: TIMEOUT
|
||||
[Overall test]
|
||||
expected: NOTRUN
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
[tex-2d-rgba-rgba-unsigned_byte.html]
|
||||
expected: TIMEOUT
|
||||
[Overall test]
|
||||
expected: NOTRUN
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
[tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html]
|
||||
expected: TIMEOUT
|
||||
[Overall test]
|
||||
expected: NOTRUN
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
[tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html]
|
||||
expected: TIMEOUT
|
||||
[Overall test]
|
||||
expected: NOTRUN
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
[tex-image-and-sub-image-2d-with-canvas-rgb565.html]
|
||||
type: testharness
|
||||
expected: ERROR
|
||||
[Overall test]
|
||||
expected: NOTRUN
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
[tex-image-and-sub-image-2d-with-canvas-rgba4444.html]
|
||||
type: testharness
|
||||
expected: ERROR
|
||||
[Overall test]
|
||||
expected: NOTRUN
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
[tex-image-and-sub-image-2d-with-canvas-rgba5551.html]
|
||||
type: testharness
|
||||
expected: ERROR
|
||||
[Overall test]
|
||||
expected: NOTRUN
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
[tex-image-and-sub-image-2d-with-canvas.html]
|
||||
type: testharness
|
||||
expected: ERROR
|
||||
[Overall test]
|
||||
expected: NOTRUN
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
[tex-image-and-sub-image-2d-with-svg-image.html]
|
||||
type: testharness
|
||||
expected: TIMEOUT
|
||||
[Overall test]
|
||||
expected: NOTRUN
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
[tex-image-and-sub-image-2d-with-video-rgb565.html]
|
||||
type: testharness
|
||||
expected: TIMEOUT
|
||||
[Overall test]
|
||||
expected: NOTRUN
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
[tex-image-and-sub-image-2d-with-video-rgba4444.html]
|
||||
type: testharness
|
||||
expected: TIMEOUT
|
||||
[Overall test]
|
||||
expected: NOTRUN
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
[tex-image-and-sub-image-2d-with-video-rgba5551.html]
|
||||
type: testharness
|
||||
expected: TIMEOUT
|
||||
[Overall test]
|
||||
expected: NOTRUN
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
[tex-image-and-sub-image-2d-with-video.html]
|
||||
type: testharness
|
||||
expected: TIMEOUT
|
||||
[Overall test]
|
||||
expected: NOTRUN
|
||||
|
|
@ -1,197 +0,0 @@
|
|||
[tex-image-and-sub-image-2d-with-webgl-canvas-rgb565.html]
|
||||
type: testharness
|
||||
[WebGL test #0: at (0, 0) expected: 255,0,0 was 255,227,0]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #0: at (0, 0) expected: 255,0,0 was 0,0,0]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #1: at (0, 16) expected: 0,255,0 was 0,0,0]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #2: at (0, 16) expected: 255,0,0 was 0,0,0]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #3: at (0, 0) expected: 0,255,0 was 0,0,0]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #4: at (0, 0) expected: 255,0,0 was 0,0,0]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #5: at (0, 16) expected: 0,255,0 was 0,0,0]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #6: at (0, 16) expected: 255,0,0 was 0,0,0]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #7: at (0, 0) expected: 0,255,0 was 0,0,0]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #8: at (0, 0) expected: 255,0,0 was 0,0,0]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #9: at (0, 16) expected: 0,255,0 was 0,0,0]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #10: at (0, 16) expected: 255,0,0 was 0,0,0]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #11: at (0, 0) expected: 0,255,0 was 0,0,0]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #12: at (0, 0) expected: 255,0,0 was 0,0,0]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #13: at (0, 16) expected: 0,255,0 was 0,0,0]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #14: at (0, 16) expected: 255,0,0 was 0,0,0]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #15: at (0, 0) expected: 0,255,0 was 0,0,0]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #16: at (0, 0) expected: 255,0,0 was 0,0,0]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #17: at (0, 16) expected: 0,255,0 was 0,0,0]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #18: at (0, 16) expected: 255,0,0 was 0,0,0]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #19: at (0, 0) expected: 0,255,0 was 0,0,0]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #20: at (0, 0) expected: 255,0,0 was 0,0,0]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #21: at (0, 16) expected: 0,255,0 was 0,0,0]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #22: at (0, 16) expected: 255,0,0 was 0,0,0]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #23: at (0, 0) expected: 0,255,0 was 0,0,0]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #24: at (0, 0) expected: 255,0,0 was 0,0,0]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #25: at (0, 16) expected: 0,255,0 was 0,0,0]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #26: at (0, 16) expected: 255,0,0 was 0,0,0]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #27: at (0, 0) expected: 0,255,0 was 0,0,0]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #28: at (0, 0) expected: 255,0,0 was 0,0,0]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #29: at (0, 16) expected: 0,255,0 was 0,0,0]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #30: at (0, 16) expected: 255,0,0 was 0,0,0]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #31: at (0, 0) expected: 0,255,0 was 0,0,0]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #32: at (0, 0) expected: 255,0,0 was 0,0,0]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #33: at (0, 16) expected: 0,255,0 was 0,0,0]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #34: at (0, 16) expected: 255,0,0 was 0,0,0]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #35: at (0, 0) expected: 0,255,0 was 0,0,0]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #36: at (0, 0) expected: 255,0,0 was 0,0,0]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #37: at (0, 16) expected: 0,255,0 was 0,0,0]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #38: at (0, 16) expected: 255,0,0 was 0,0,0]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #39: at (0, 0) expected: 0,255,0 was 0,0,0]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #40: at (0, 0) expected: 255,0,0 was 0,0,0]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #41: at (0, 16) expected: 0,255,0 was 0,0,0]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #42: at (0, 16) expected: 255,0,0 was 0,0,0]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #43: at (0, 0) expected: 0,255,0 was 0,0,0]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #44: at (0, 0) expected: 255,0,0 was 0,0,0]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #45: at (0, 16) expected: 0,255,0 was 0,0,0]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #46: at (0, 16) expected: 255,0,0 was 0,0,0]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #47: at (0, 0) expected: 0,255,0 was 0,0,0]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #48: at (0, 0) expected: 255,0,0 was 0,0,0]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #49: at (0, 16) expected: 0,255,0 was 0,0,0]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #50: at (0, 16) expected: 255,0,0 was 0,0,0]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #51: at (0, 0) expected: 0,255,0 was 0,0,0]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #52: at (0, 0) expected: 255,0,0 was 0,0,0]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #53: at (0, 16) expected: 0,255,0 was 0,0,0]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #54: at (0, 16) expected: 255,0,0 was 0,0,0]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #55: at (0, 0) expected: 0,255,0 was 0,0,0]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #56: at (0, 0) expected: 255,0,0 was 0,0,0]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #57: at (0, 16) expected: 0,255,0 was 0,0,0]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #58: at (0, 16) expected: 255,0,0 was 0,0,0]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #59: at (0, 0) expected: 0,255,0 was 0,0,0]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #60: at (0, 0) expected: 255,0,0 was 0,0,0]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #61: at (0, 16) expected: 0,255,0 was 0,0,0]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #62: at (0, 16) expected: 255,0,0 was 0,0,0]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #63: at (0, 0) expected: 0,255,0 was 0,0,0]
|
||||
expected: FAIL
|
||||
|
|
@ -1,197 +0,0 @@
|
|||
[tex-image-and-sub-image-2d-with-webgl-canvas-rgba4444.html]
|
||||
type: testharness
|
||||
[WebGL test #0: at (0, 0) expected: 255,0,0 was 255,255,0]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #0: at (0, 0) expected: 255,0,0 was 0,0,0]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #1: at (0, 16) expected: 0,255,0 was 0,0,0]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #2: at (0, 16) expected: 255,0,0 was 0,0,0]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #3: at (0, 0) expected: 0,255,0 was 0,0,0]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #4: at (0, 0) expected: 255,0,0 was 0,0,0]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #5: at (0, 16) expected: 0,255,0 was 0,0,0]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #6: at (0, 16) expected: 255,0,0 was 0,0,0]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #7: at (0, 0) expected: 0,255,0 was 0,0,0]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #8: at (0, 0) expected: 255,0,0 was 0,0,0]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #9: at (0, 16) expected: 0,255,0 was 0,0,0]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #10: at (0, 16) expected: 255,0,0 was 0,0,0]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #11: at (0, 0) expected: 0,255,0 was 0,0,0]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #12: at (0, 0) expected: 255,0,0 was 0,0,0]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #13: at (0, 16) expected: 0,255,0 was 0,0,0]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #14: at (0, 16) expected: 255,0,0 was 0,0,0]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #15: at (0, 0) expected: 0,255,0 was 0,0,0]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #16: at (0, 0) expected: 255,0,0 was 0,0,0]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #17: at (0, 16) expected: 0,255,0 was 0,0,0]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #18: at (0, 16) expected: 255,0,0 was 0,0,0]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #19: at (0, 0) expected: 0,255,0 was 0,0,0]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #20: at (0, 0) expected: 255,0,0 was 0,0,0]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #21: at (0, 16) expected: 0,255,0 was 0,0,0]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #22: at (0, 16) expected: 255,0,0 was 0,0,0]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #23: at (0, 0) expected: 0,255,0 was 0,0,0]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #24: at (0, 0) expected: 255,0,0 was 0,0,0]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #25: at (0, 16) expected: 0,255,0 was 0,0,0]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #26: at (0, 16) expected: 255,0,0 was 0,0,0]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #27: at (0, 0) expected: 0,255,0 was 0,0,0]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #28: at (0, 0) expected: 255,0,0 was 0,0,0]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #29: at (0, 16) expected: 0,255,0 was 0,0,0]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #30: at (0, 16) expected: 255,0,0 was 0,0,0]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #31: at (0, 0) expected: 0,255,0 was 0,0,0]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #32: at (0, 0) expected: 255,0,0 was 0,0,0]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #33: at (0, 16) expected: 0,255,0 was 0,0,0]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #34: at (0, 16) expected: 255,0,0 was 0,0,0]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #35: at (0, 0) expected: 0,255,0 was 0,0,0]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #36: at (0, 0) expected: 255,0,0 was 0,0,0]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #37: at (0, 16) expected: 0,255,0 was 0,0,0]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #38: at (0, 16) expected: 255,0,0 was 0,0,0]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #39: at (0, 0) expected: 0,255,0 was 0,0,0]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #40: at (0, 0) expected: 255,0,0 was 0,0,0]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #41: at (0, 16) expected: 0,255,0 was 0,0,0]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #42: at (0, 16) expected: 255,0,0 was 0,0,0]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #43: at (0, 0) expected: 0,255,0 was 0,0,0]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #44: at (0, 0) expected: 255,0,0 was 0,0,0]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #45: at (0, 16) expected: 0,255,0 was 0,0,0]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #46: at (0, 16) expected: 255,0,0 was 0,0,0]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #47: at (0, 0) expected: 0,255,0 was 0,0,0]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #48: at (0, 0) expected: 255,0,0 was 0,0,0]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #49: at (0, 16) expected: 0,255,0 was 0,0,0]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #50: at (0, 16) expected: 255,0,0 was 0,0,0]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #51: at (0, 0) expected: 0,255,0 was 0,0,0]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #52: at (0, 0) expected: 255,0,0 was 0,0,0]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #53: at (0, 16) expected: 0,255,0 was 0,0,0]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #54: at (0, 16) expected: 255,0,0 was 0,0,0]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #55: at (0, 0) expected: 0,255,0 was 0,0,0]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #56: at (0, 0) expected: 255,0,0 was 0,0,0]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #57: at (0, 16) expected: 0,255,0 was 0,0,0]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #58: at (0, 16) expected: 255,0,0 was 0,0,0]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #59: at (0, 0) expected: 0,255,0 was 0,0,0]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #60: at (0, 0) expected: 255,0,0 was 0,0,0]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #61: at (0, 16) expected: 0,255,0 was 0,0,0]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #62: at (0, 16) expected: 255,0,0 was 0,0,0]
|
||||
expected: FAIL
|
||||
|
||||
[WebGL test #63: at (0, 0) expected: 0,255,0 was 0,0,0]
|
||||
expected: FAIL
|
||||
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue