• Home
  • Raw
  • Download

Lines Matching refs:BPP

35 #define CARDBPP CONCAT3E(uint,BPP,_t)
36 #define filterPtrBPP CONCAT2E(filterPtr,BPP)
38 #define HandleTightBPP CONCAT2E(HandleTight,BPP)
39 #define InitFilterCopyBPP CONCAT2E(InitFilterCopy,BPP)
40 #define InitFilterPaletteBPP CONCAT2E(InitFilterPalette,BPP)
41 #define InitFilterGradientBPP CONCAT2E(InitFilterGradient,BPP)
42 #define FilterCopyBPP CONCAT2E(FilterCopy,BPP)
43 #define FilterPaletteBPP CONCAT2E(FilterPalette,BPP)
44 #define FilterGradientBPP CONCAT2E(FilterGradient,BPP)
46 #if BPP != 8
47 #define DecompressJpegRectBPP CONCAT2E(DecompressJpegRect,BPP)
85 #if BPP != 8
119 #if BPP == 32 in HandleTightBPP()
139 #if BPP == 8 in HandleTightBPP()
231 bufferSize = RFB_BUFFER_SIZE * bitsPixel / (bitsPixel + BPP) & 0xFFFFFFFC; in HandleTightBPP()
306 #if BPP == 32 in InitFilterCopyBPP()
316 return BPP; in InitFilterCopyBPP()
323 #if BPP == 32 in FilterCopyBPP()
339 memcpy (dst, client->buffer, numRows * client->rectWidth * (BPP / 8)); in FilterCopyBPP()
356 #if BPP == 32
409 #if BPP == 32 in FilterGradientBPP()
431 dst[y*client->rectWidth] = RGB_TO_PIXEL(BPP, pix[0], pix[1], pix[2]); in FilterGradientBPP()
445 dst[y*client->rectWidth+x] = RGB_TO_PIXEL(BPP, pix[0], pix[1], pix[2]); in FilterGradientBPP()
455 #if BPP == 32 in InitFilterPaletteBPP()
469 #if BPP == 32 in InitFilterPaletteBPP()
483 if (!ReadFromRFBServer(client, (char*)&client->tightPalette, client->rectColors * (BPP / 8))) in InitFilterPaletteBPP()
514 #if BPP != 8
578 RGB24_TO_PIXEL(BPP, client->buffer[dx*3], client->buffer[dx*3+1], client->buffer[dx*3+2]); in DecompressJpegRectBPP()