(x, y, width, height, frame)
| 381 | } |
| 382 | |
| 383 | videoFrame(x, y, width, height, frame) { |
| 384 | this._renderQPush({ |
| 385 | 'type': 'frame', |
| 386 | 'frame': frame, |
| 387 | 'x': x, |
| 388 | 'y': y, |
| 389 | 'width': width, |
| 390 | 'height': height |
| 391 | }); |
| 392 | } |
| 393 | |
| 394 | blitImage(x, y, width, height, arr, offset, fromQueue) { |
| 395 | if (this._renderQ.length !== 0 && !fromQueue) { |
no test coverage detected