Searched defs:Bpp (Results 1 - 3 of 3) sorted by relevance

/vbox/src/VBox/RDP/client-1.8.3/
H A Dbitmap.c893 bitmap_decompress(uint8 * output, int width, int height, uint8 * input, int size, int Bpp) argument
897 switch (Bpp)
912 unimpl("Bpp %d\n", Bpp);
H A Dorders.c931 uint8 cache_id, width, height, bpp, Bpp; local
940 Bpp = (bpp + 7) / 8;
946 inverted = (uint8 *) xmalloc(width * height * Bpp);
949 memcpy(&inverted[(height - y - 1) * (width * Bpp)], &data[y * (width * Bpp)],
950 width * Bpp);
964 uint8 cache_id, width, height, bpp, Bpp; local
976 Bpp = (bpp + 7) / 8;
999 bmpdata = (uint8 *) xmalloc(width * height * Bpp);
1001 if (bitmap_decompress(bmpdata, width, height, data, size, Bpp))
1020 uint8 cache_id, cache_idx_low, width, height, Bpp; local
1160 process_compressed_8x8_brush_data(uint8 * in, uint8 * out, int Bpp) argument
1200 int Bpp; local
[all...]
H A Drdp.c797 int Bpp; local
801 Bpp = (g_server_depth + 7) / 8; /* bytes per pixel */
804 out_uint16_le(s, 0x100 * Bpp); /* max cell size */
806 out_uint16_le(s, 0x400 * Bpp); /* max cell size */
808 out_uint16_le(s, 0x1000 * Bpp); /* max cell size */
1283 uint16 cx, cy, bpp, Bpp, compress, bufsize, size; local
1298 Bpp = (bpp + 7) / 8;
1305 DEBUG(("BITMAP_UPDATE(l=%d,t=%d,r=%d,b=%d,w=%d,h=%d,Bpp=%d,cmp=%d)\n",
1306 left, top, right, bottom, width, height, Bpp, compress));
1311 bmpdata = (uint8 *) xmalloc(width * height * Bpp);
[all...]

Completed in 63 milliseconds