diff options
author | Balazs Ludmany <ludmany.balazs@cloud.bme.hu> | 2016-06-21 10:03:52 +0200 |
---|---|---|
committer | Balazs Ludmany <ludmany.balazs@cloud.bme.hu> | 2016-06-29 09:46:10 +0200 |
commit | a01a18df1d44ec875708d5fc9d6c4e0934535974 (patch) | |
tree | 7bafd41f957a76e6c8b204791d7e7dd39fec0b02 /libvncclient/rre.c | |
parent | 1f8c443cbc439e79d9e2c8b92643b65b7332db89 (diff) | |
download | libtdevnc-a01a18df1d44ec875708d5fc9d6c4e0934535974.tar.gz libtdevnc-a01a18df1d44ec875708d5fc9d6c4e0934535974.zip |
Add function pointers for every type of rectangle
Diffstat (limited to 'libvncclient/rre.c')
-rw-r--r-- | libvncclient/rre.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libvncclient/rre.c b/libvncclient/rre.c index 94158c9..752d7cc 100644 --- a/libvncclient/rre.c +++ b/libvncclient/rre.c @@ -45,7 +45,7 @@ HandleRREBPP (rfbClient* client, int rx, int ry, int rw, int rh) if (!ReadFromRFBServer(client, (char *)&pix, sizeof(pix))) return FALSE; - FillRectangle(client, rx, ry, rw, rh, pix); + client->GotFillRect(client, rx, ry, rw, rh, pix); for (i = 0; i < hdr.nSubrects; i++) { if (!ReadFromRFBServer(client, (char *)&pix, sizeof(pix))) @@ -59,7 +59,7 @@ HandleRREBPP (rfbClient* client, int rx, int ry, int rw, int rh) subrect.w = rfbClientSwap16IfLE(subrect.w); subrect.h = rfbClientSwap16IfLE(subrect.h); - FillRectangle(client, rx+subrect.x, ry+subrect.y, subrect.w, subrect.h, pix); + client->GotFillRect(client, rx+subrect.x, ry+subrect.y, subrect.w, subrect.h, pix); } return TRUE; |