summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBart Warmerdam <bartw@xs4all.nl>2013-01-20 11:45:19 +0100
committerBart Warmerdam <bartw@xs4all.nl>2013-01-20 11:45:19 +0100
commit4efe900f2d3ba4a2a3d60d2b68b1a90b739b9c2d (patch)
tree797293265415e8a75d035769e8368127a8bb939c
parentffc7e7ff270134c7f5c73f8f86cac81038e8fee3 (diff)
downloadxrdp-proprietary-4efe900f2d3ba4a2a3d60d2b68b1a90b739b9c2d.tar.gz
xrdp-proprietary-4efe900f2d3ba4a2a3d60d2b68b1a90b739b9c2d.zip
Use correct RGB byte odering for uncompressed bitmaps (ms-rdpbcgr p192), RED=lsB, BLUE=msB
-rw-r--r--libxrdp/xrdp_orders.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/libxrdp/xrdp_orders.c b/libxrdp/xrdp_orders.c
index bb95aa71..7a17759c 100644
--- a/libxrdp/xrdp_orders.c
+++ b/libxrdp/xrdp_orders.c
@@ -1872,9 +1872,9 @@ xrdp_orders_send_raw_bitmap(struct xrdp_orders *self,
if (Bpp == 3)
{
pixel = GETPIXEL32(data, j, i, width);
- out_uint8(self->out_s, pixel >> 16);
- out_uint8(self->out_s, pixel >> 8);
out_uint8(self->out_s, pixel);
+ out_uint8(self->out_s, pixel >> 8);
+ out_uint8(self->out_s, pixel >> 16);
}
else if (Bpp == 2)
{
@@ -2093,9 +2093,9 @@ xrdp_orders_send_raw_bitmap2(struct xrdp_orders *self,
if (Bpp == 3)
{
pixel = GETPIXEL32(data, j, i, width);
- out_uint8(self->out_s, pixel >> 16);
- out_uint8(self->out_s, pixel >> 8);
out_uint8(self->out_s, pixel);
+ out_uint8(self->out_s, pixel >> 8);
+ out_uint8(self->out_s, pixel >> 16);
}
else if (Bpp == 2)
{