diff options
author | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
---|---|---|
committer | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
commit | 5f8de423f190bbb79a62f804151bc24824fa32d8 (patch) | |
tree | 10027f336435511475e392454359edea8e25895d /devtools/client/shadereditor/test/browser_webgl-actor-test-17.js | |
parent | 49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff) | |
download | UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip |
Add m-esr52 at 52.6.0
Diffstat (limited to 'devtools/client/shadereditor/test/browser_webgl-actor-test-17.js')
-rw-r--r-- | devtools/client/shadereditor/test/browser_webgl-actor-test-17.js | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/devtools/client/shadereditor/test/browser_webgl-actor-test-17.js b/devtools/client/shadereditor/test/browser_webgl-actor-test-17.js new file mode 100644 index 000000000..92b940d4a --- /dev/null +++ b/devtools/client/shadereditor/test/browser_webgl-actor-test-17.js @@ -0,0 +1,46 @@ +/* Any copyright is dedicated to the Public Domain. + http://creativecommons.org/publicdomain/zero/1.0/ */ + +/** + * Tests that the blackbox/unblackbox operations work as expected with + * overlapping geometry. + */ + +function* ifWebGLSupported() { + let { target, front } = yield initBackend(OVERLAPPING_GEOMETRY_CANVAS_URL); + front.setup({ reload: true }); + + let [firstProgramActor, secondProgramActor] = yield getPrograms(front, 2); + + yield ensurePixelIs(front, { x: 0, y: 0 }, { r: 255, g: 255, b: 0, a: 255 }, true); + yield ensurePixelIs(front, { x: 64, y: 64 }, { r: 0, g: 255, b: 255, a: 255 }, true); + yield ensurePixelIs(front, { x: 127, y: 127 }, { r: 255, g: 255, b: 0, a: 255 }, true); + ok(true, "The corner vs. center pixel colors are correct before blackboxing."); + + yield firstProgramActor.blackbox(); + yield ensurePixelIs(front, { x: 0, y: 0 }, { r: 0, g: 0, b: 0, a: 255 }, true); + yield ensurePixelIs(front, { x: 64, y: 64 }, { r: 0, g: 255, b: 255, a: 255 }, true); + yield ensurePixelIs(front, { x: 127, y: 127 }, { r: 0, g: 0, b: 0, a: 255 }, true); + ok(true, "The corner vs. center pixel colors are correct after blackboxing (1)."); + + yield firstProgramActor.unblackbox(); + yield ensurePixelIs(front, { x: 0, y: 0 }, { r: 255, g: 255, b: 0, a: 255 }, true); + yield ensurePixelIs(front, { x: 64, y: 64 }, { r: 0, g: 255, b: 255, a: 255 }, true); + yield ensurePixelIs(front, { x: 127, y: 127 }, { r: 255, g: 255, b: 0, a: 255 }, true); + ok(true, "The corner vs. center pixel colors are correct after unblackboxing (1)."); + + yield secondProgramActor.blackbox(); + yield ensurePixelIs(front, { x: 0, y: 0 }, { r: 255, g: 255, b: 0, a: 255 }, true); + yield ensurePixelIs(front, { x: 64, y: 64 }, { r: 255, g: 255, b: 0, a: 255 }, true); + yield ensurePixelIs(front, { x: 127, y: 127 }, { r: 255, g: 255, b: 0, a: 255 }, true); + ok(true, "The corner vs. center pixel colors are correct after blackboxing (2)."); + + yield secondProgramActor.unblackbox(); + yield ensurePixelIs(front, { x: 0, y: 0 }, { r: 255, g: 255, b: 0, a: 255 }, true); + yield ensurePixelIs(front, { x: 64, y: 64 }, { r: 0, g: 255, b: 255, a: 255 }, true); + yield ensurePixelIs(front, { x: 127, y: 127 }, { r: 255, g: 255, b: 0, a: 255 }, true); + ok(true, "The corner vs. center pixel colors are correct after unblackboxing (2)."); + + yield removeTab(target.tab); + finish(); +} |