Home | History | Annotate | Download | only in libvncclient

Lines Matching refs:width

46 rfbBool HandleCursorShape(rfbClient* client,int xhot, int yhot, int width, int height, uint32_t enc)
57 bytesPerRow = (width + 7) / 8;
60 if (width * height == 0)
67 client->rcSource = malloc(width * height * bytesPerPixel);
102 for (x = 0; x < width / 8; x++) {
108 for (b = 7; b > 7 - width % 8; b--) {
117 for (x = 0; x < width * height; x++)
121 for (x = 0; x < width * height; x++)
125 for (x = 0; x < width * height; x++)
132 if (!ReadFromRFBServer(client, (char *)client->rcSource, width * height * bytesPerPixel)) {
150 client->rcMask = malloc(width * height);
160 for (x = 0; x < width / 8; x++) {
165 for (b = 7; b > 7 - width % 8; b--) {
171 client->GotCursorShape(client, xhot, yhot, width, height, bytesPerPixel);