change to build with latest FreeRDP
authorMatt Hortman <matt@FlintRiverSystems.com>
Thu, 23 Feb 2012 19:37:23 +0000 (14:37 -0500)
committerMatt Hortman <matt@FlintRiverSystems.com>
Thu, 23 Feb 2012 19:37:23 +0000 (14:37 -0500)
src/rdp_gdi.c [changed mode: 0644->0755]
src/rdp_glyph.c [changed mode: 0644->0755]

old mode 100644 (file)
new mode 100755 (executable)
index 8ec80a0..30b4db2
@@ -85,7 +85,7 @@ void guac_rdp_gdi_memblt(rdpContext* context, MEMBLT_ORDER* memblt) {
 void guac_rdp_gdi_opaquerect(rdpContext* context, OPAQUE_RECT_ORDER* opaque_rect) {
 
     guac_client* client = ((rdp_freerdp_context*) context)->client;
-    uint32 color = freerdp_color_convert(opaque_rect->color,
+    uint32 color = freerdp_color_convert_var(opaque_rect->color,
             context->instance->settings->color_depth, 32,
             ((rdp_freerdp_context*) context)->clrconv);
 
old mode 100644 (file)
new mode 100755 (executable)
index 608b722..c6fbce0
@@ -142,11 +142,11 @@ void guac_rdp_glyph_begindraw(rdpContext* context,
     guac_client* client = ((rdp_freerdp_context*) context)->client;
     rdp_guac_client_data* guac_client_data = (rdp_guac_client_data*) client->data;
 
-    bgcolor = freerdp_color_convert(bgcolor,
+    bgcolor = freerdp_color_convert_var(bgcolor,
             context->instance->settings->color_depth, 32,
             ((rdp_freerdp_context*) context)->clrconv);
 
-    fgcolor = freerdp_color_convert(fgcolor,
+    fgcolor = freerdp_color_convert_var(fgcolor,
             context->instance->settings->color_depth, 32,
             ((rdp_freerdp_context*) context)->clrconv);