Lines Matching refs:screen
4 static void FUNCTION(rfbScreenInfoPtr screen) in FUNCTION() argument
6 OUT_T* buffer = (OUT_T*)screen->frameBuffer; in FUNCTION()
7 int i, j, w = screen->width, h = screen->height; in FUNCTION()
18 screen->width = h; in FUNCTION()
19 screen->paddedWidthInBytes = h * OUTBITS / 8; in FUNCTION()
20 screen->height = w; in FUNCTION()
25 iterator = rfbGetClientIterator(screen); in FUNCTION()
31 rfbMarkRectAsModified(screen, 0, 0, screen->width, screen->height); in FUNCTION()
35 void FUNCNAME(rfbScreenInfoPtr screen) { in FUNCNAME() argument
36 if (screen->serverFormat.bitsPerPixel == 32) in FUNCNAME()
37 CONCAT2E(FUNCNAME,32)(screen); in FUNCNAME()
38 else if (screen->serverFormat.bitsPerPixel == 16) in FUNCNAME()
39 CONCAT2E(FUNCNAME,16)(screen); in FUNCNAME()
40 else if (screen->serverFormat.bitsPerPixel == 8) in FUNCNAME()
41 CONCAT2E(FUNCNAME,8)(screen); in FUNCNAME()
44 screen->serverFormat.bitsPerPixel); in FUNCNAME()