Closed
Bug 1391301
Opened 8 years ago
Closed 4 years ago
WebGL errors are not getting through from OffscreenCanvases
Categories
(Core :: Graphics: CanvasWebGL, defect, P5)
Core
Graphics: CanvasWebGL
Tracking
()
RESOLVED
WORKSFORME
| Tracking | Status | |
|---|---|---|
| firefox57 | --- | unaffected |
People
(Reporter: jujjyl, Unassigned)
References
Details
(Whiteboard: [gfx-noted])
Running
> <html><meta charset="utf-8"><body><canvas id="canvas"><script>
> document.getElementById("canvas").getContext('webgl').getParameter(42624);
> </script></body></html>
prints out the following to console, as expected:
> Error: WebGL warning: getParameter: parameter: invalid enum value <enum 0xa680>
However, when running with OffscreenCanvas (gfx.offscreencanvas.enabled;true), the following
> <html><meta charset="utf-8"><body><canvas id="canvas"><script>
> document.getElementById("canvas").transferControlToOffscreen().getContext('webgl').getParameter(42624);
> </script></body></html>
does not print out any error diagnostics to console.
Tested on Windows 10 x64 Firefox Nightly.
| Reporter | ||
Updated•8 years ago
|
Blocks: offscreen-canvas
Comment 1•8 years ago
|
||
Not sure exactly where this problem would be, but it seems like Jeff would be a good person to know.
Flags: needinfo?(jgilbert)
Whiteboard: [gfx-noted]
Offscreen canvas is not enabled in 57.
Updated•8 years ago
|
Priority: P3 → P5
Comment 3•8 years ago
|
||
We aren't maintaining offscreen canvas at the moment.
Comment 4•4 years ago
|
||
I can't reproduce this issue. I see the error message in both cases.
Status: NEW → RESOLVED
Closed: 4 years ago
Resolution: --- → WORKSFORME
You need to log in
before you can comment on or make changes to this bug.
Description
•