Function
enableContinuousUpdates
(sock, enable, x, y, width, height)
Source from the content-addressed store, hash-verified
| 3477 | }, |
| 3478 | |
| 3479 | enableContinuousUpdates(sock, enable, x, y, width, height) { |
| 3480 | sock.sQpush8(150); // msg-type |
| 3481 | |
| 3482 | sock.sQpush8(enable); |
| 3483 | |
| 3484 | sock.sQpush16(x); |
| 3485 | sock.sQpush16(y); |
| 3486 | sock.sQpush16(width); |
| 3487 | sock.sQpush16(height); |
| 3488 | |
| 3489 | sock.flush(); |
| 3490 | }, |
| 3491 | |
| 3492 | pixelFormat(sock, depth, trueColor) { |
| 3493 | let bpp; |
Callers
nothing calls this directly
Tested by
no test coverage detected