(parent, width, height)
| 125 | * @return {HTMLCanvasElement} The created WebGL canvas. |
| 126 | */ |
| 127 | var createWebGL = function (parent, width, height) |
| 128 | { |
| 129 | return create(parent, width, height, CONST.WEBGL); |
| 130 | }; |
| 131 | |
| 132 | /** |
| 133 | * Gets the first free canvas container from the pool. |
nothing calls this directly
no test coverage detected
searching dependent graphs…