(x, y, width, height)
| 64 | |
| 65 | // rectangle |
| 66 | rectangle(x, y, width, height) { |
| 67 | if (undefined !== height) |
| 68 | return new Rectangle(x, y, width, height); |
| 69 | return new Rectangle(0, 0, 0, 0); |
| 70 | } |
| 71 | } |
| 72 | |
| 73 | function build(width, height, byteLength, pixelFormat, displayListLength, rotation) { return native("xs_poco_build").call(this, width, height, byteLength, pixelFormat, displayListLength, rotation); } |
no outgoing calls
no test coverage detected