summaryrefslogtreecommitdiffstats
path: root/libvncclient/corre.c
diff options
context:
space:
mode:
authorBalazs Ludmany <ludmany.balazs@cloud.bme.hu>2016-06-21 10:03:52 +0200
committerBalazs Ludmany <ludmany.balazs@cloud.bme.hu>2016-06-29 09:46:10 +0200
commita01a18df1d44ec875708d5fc9d6c4e0934535974 (patch)
tree7bafd41f957a76e6c8b204791d7e7dd39fec0b02 /libvncclient/corre.c
parent1f8c443cbc439e79d9e2c8b92643b65b7332db89 (diff)
downloadlibtdevnc-a01a18df1d44ec875708d5fc9d6c4e0934535974.tar.gz
libtdevnc-a01a18df1d44ec875708d5fc9d6c4e0934535974.zip
Add function pointers for every type of rectangle
Diffstat (limited to 'libvncclient/corre.c')
-rw-r--r--libvncclient/corre.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libvncclient/corre.c b/libvncclient/corre.c
index baf91cc..66e3b08 100644
--- a/libvncclient/corre.c
+++ b/libvncclient/corre.c
@@ -46,7 +46,7 @@ HandleCoRREBPP (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);
if (!ReadFromRFBServer(client, client->buffer, hdr.nSubrects * (4 + (BPP / 8))))
return FALSE;
@@ -61,7 +61,7 @@ HandleCoRREBPP (rfbClient* client, int rx, int ry, int rw, int rh)
w = *ptr++;
h = *ptr++;
- FillRectangle(client, rx+x, ry+y, w, h, pix);
+ client->GotFillRect(client, rx+x, ry+y, w, h, pix);
}
return TRUE;