Home | History | Annotate | Download | only in libvncserver

Lines Matching refs:rfbScreen

3 int rfbDrawChar(rfbScreenInfoPtr rfbScreen,rfbFontDataPtr font,
9 int rowstride=rfbScreen->paddedWidthInBytes;
10 int bpp=rfbScreen->serverFormat.bitsPerPixel/8;
27 if(d&0x80 && y+j >= 0 && y+j < rfbScreen->height &&
28 x+i >= 0 && x+i < rfbScreen->width)
29 memcpy(rfbScreen->frameBuffer+(y+j)*rowstride+(x+i)*bpp,colour,bpp);
37 void rfbDrawString(rfbScreenInfoPtr rfbScreen,rfbFontDataPtr font,
41 x+=rfbDrawChar(rfbScreen,font,x,y,*string,colour);
48 int rfbDrawCharWithClip(rfbScreenInfoPtr rfbScreen,rfbFontDataPtr font,
56 int rowstride=rfbScreen->paddedWidthInBytes;
57 int bpp=rfbScreen->serverFormat.bitsPerPixel/8,extra_bytes=0;
89 memcpy(rfbScreen->frameBuffer+(y+j)*rowstride+(x+i)*bpp,
92 memcpy(rfbScreen->frameBuffer+(y+j)*rowstride+(x+i)*bpp,
104 void rfbDrawStringWithClip(rfbScreenInfoPtr rfbScreen,rfbFontDataPtr font,
110 x+=rfbDrawCharWithClip(rfbScreen,font,x,y,*string,x1,y1,x2,y2,