(parent, width, height)
| 104 | * @return {HTMLCanvasElement} The canvas element that was created or pulled from the pool. |
| 105 | */ |
| 106 | var create2D = function (parent, width, height) |
| 107 | { |
| 108 | return create(parent, width, height, CONST.CANVAS); |
| 109 | }; |
| 110 | |
| 111 | /** |
| 112 | * Creates a new WebGL Canvas DOM element. |
nothing calls this directly
no test coverage detected
searching dependent graphs…