From 16dad1e9121a1a0183130b432517b9b52d886c37 Mon Sep 17 00:00:00 2001 From: Andri Yngvason Date: Thu, 15 Aug 2019 19:34:15 +0000 Subject: [PATCH] Add stuff --- trle.c | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 trle.c diff --git a/trle.c b/trle.c new file mode 100644 index 0000000..88ad047 --- /dev/null +++ b/trle.c @@ -0,0 +1,16 @@ +#include + +#include "rfb-proto.h" + +struct vnc_fb { + uint8_t *data; + uint32_t pixfmt; + uint32_t width; + uint32_t height; +}; + +void rfb_zrle_encode_tile(uint8_t *dst, uint32_t dst_pixfmt, + const struct vnc_fb *src) +{ + +}