Searched defs:bmpdata (Results 1 - 2 of 2) sorted by relevance

/vbox/src/VBox/RDP/client-1.8.3/
H A Dorders.c965 uint8 *data, *bmpdata; local
999 bmpdata = (uint8 *) xmalloc(width * height * Bpp);
1001 if (bitmap_decompress(bmpdata, width, height, data, size, Bpp))
1003 bitmap = ui_create_bitmap(width, height, bmpdata);
1011 xfree(bmpdata);
1022 uint8 *data, *bmpdata, *bitmap_id; local
1059 bmpdata = (uint8 *) xmalloc(width * height * Bpp);
1063 if (!bitmap_decompress(bmpdata, width, height, data, bufsize, Bpp))
1066 xfree(bmpdata);
1073 memcpy(&bmpdata[(heigh
[all...]
H A Drdp.c1284 uint8 *data, *bmpdata; local
1311 bmpdata = (uint8 *) xmalloc(width * height * Bpp);
1314 in_uint8a(s, &bmpdata[(height - y - 1) * (width * Bpp)],
1317 ui_paint_bitmap(left, top, cx, cy, width, height, bmpdata);
1318 xfree(bmpdata);
1334 bmpdata = (uint8 *) xmalloc(width * height * Bpp);
1335 if (bitmap_decompress(bmpdata, width, height, data, size, Bpp))
1337 ui_paint_bitmap(left, top, cx, cy, width, height, bmpdata);
1344 xfree(bmpdata);

Completed in 47 milliseconds