(x, y, width, height, sock, display, depth)
| 72 | } |
| 73 | |
| 74 | _fillRect(x, y, width, height, sock, display, depth) { |
| 75 | if (sock.rQwait("TIGHT", 3)) { |
| 76 | return false; |
| 77 | } |
| 78 | |
| 79 | let pixel = sock.rQshiftBytes(3); |
| 80 | display.fillRect(x, y, width, height, pixel, false); |
| 81 | |
| 82 | return true; |
| 83 | } |
| 84 | |
| 85 | _jpegRect(x, y, width, height, sock, display, depth) { |
| 86 | let data = this._readData(sock); |
no test coverage detected