Add stuff

tight-png
Andri Yngvason 2019-08-15 19:34:15 +00:00
parent 472c96669c
commit 16dad1e912
1 changed files with 16 additions and 0 deletions

16
trle.c 100644
View File

@ -0,0 +1,16 @@
#include <string.h>
#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)
{
}