Home | History | Annotate | Download | only in libvncclient

Lines Matching defs:bpp

26  * rfbproto.c, each time with a different definition of the macro BPP.  For
27 * each value of BPP, this file defines a function which handles an zrle
28 * encoded rectangle with BPP bits per pixel.
32 #define REALBPP BPP
45 #define CARDBPP CONCAT3E(uint,BPP,_t)
63 #if REALBPP != BPP
72 #define PIXEL_T __RFB_CONCAT3E(uint,BPP,_t)
73 #if BPP!=8
226 #if REALBPP!=BPP && defined(UNCOMP) && UNCOMP!=0
242 #if BPP!=8
254 #if BPP!=8
269 #if REALBPP!=BPP
301 bpp=(type>4?(type>16?8:4):(type>2?2:1)),
302 mask=(1<<bpp)-1,
303 divider=(8/bpp);
314 for(i=x,shift=8-bpp; i<x+w; i++) {
316 shift-=bpp;
318 shift=8-bpp;
322 if(shift<8-bpp)