(loader)
| 123748 | return canvas; |
| 123749 | } |
| 123750 | function CanvasRenderer(loader) { |
| 123751 | Renderer.call(this, loader); |
| 123752 | this._options = {}; |
| 123753 | this._redraw = false; |
| 123754 | this._dirty = new Bounds(); |
| 123755 | this._tempb = new Bounds(); |
| 123756 | } |
| 123757 | const base$1 = Renderer.prototype; |
| 123758 | const viewBounds = (origin, width, height)=>new Bounds().set(0, 0, width, height).translate(-origin[0], -origin[1]); |
| 123759 | function clipToBounds(g, b18, origin) { |
nothing calls this directly
no outgoing calls
no test coverage detected