Home | History | Annotate | Download | only in libvncclient

Lines Matching defs:numRows

81 static void FilterCopyBPP (rfbClient* client, int numRows, CARDBPP *destBuffer);
82 static void FilterPaletteBPP (rfbClient* client, int numRows, CARDBPP *destBuffer);
83 static void FilterGradientBPP (rfbClient* client, int numRows, CARDBPP *destBuffer);
101 int bufferSize, rowSize, numRows, portionLen, rowsProcessed, extraBytes;
272 numRows = (bufferSize - zs->avail_out) / rowSize;
274 filterFn(client, numRows, (CARDBPP *)buffer2);
276 extraBytes = bufferSize - zs->avail_out - numRows * rowSize;
278 memcpy(client->buffer, &client->buffer[numRows * rowSize], extraBytes);
280 CopyRectangle(client, (uint8_t *)buffer2, rx, ry+rowsProcessed, rw, numRows);
282 rowsProcessed += numRows;
320 FilterCopyBPP (rfbClient* client, int numRows, CARDBPP *dst)
327 for (y = 0; y < numRows; y++) {
339 memcpy (dst, client->buffer, numRows * client->rectWidth * (BPP / 8));
359 FilterGradient24 (rfbClient* client, int numRows, uint32_t *dst)
366 for (y = 0; y < numRows; y++) {
398 FilterGradientBPP (rfbClient* client, int numRows, CARDBPP *dst)
411 FilterGradient24(client, numRows, dst);
424 for (y = 0; y < numRows; y++) {
490 FilterPaletteBPP (rfbClient* client, int numRows, CARDBPP *dst)
498 for (y = 0; y < numRows; y++) {
508 for (y = 0; y < numRows; y++)