Home | History | Annotate | Download | only in libvncclient

Lines Matching refs:height

46 rfbBool HandleCursorShape(rfbClient* client,int xhot, int yhot, int width, int height, uint32_t enc)
58 bytesMaskData = bytesPerRow * height;
60 if (width * height == 0)
67 client->rcSource = malloc(width * height * bytesPerPixel);
101 for (y = 0; y < height; y++) {
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);
159 for (y = 0; y < height; y++) {
171 client->GotCursorShape(client, xhot, yhot, width, height, bytesPerPixel);