From 31268c3f6c025e82c61f7e2edc74f95c91d062d1 Mon Sep 17 00:00:00 2001 From: Michael Jumper Date: Tue, 13 Sep 2011 10:02:32 -0700 Subject: [PATCH] Altered glyph drawing order. --- protocols/rdp/src/rdp_handlers.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/protocols/rdp/src/rdp_handlers.c b/protocols/rdp/src/rdp_handlers.c index c227c2d0..76e31b6a 100644 --- a/protocols/rdp/src/rdp_handlers.c +++ b/protocols/rdp/src/rdp_handlers.c @@ -359,19 +359,19 @@ void guac_rdp_ui_draw_glyph(rdpInst* inst, int x, int y, int width, int height, guac_client_data->foreground.blue, 255); - /* Stencil */ - guac_send_copy(io, - (guac_layer*) glyph, 0, 0, width, height, - GUAC_COMP_OVER, current_surface, x, y); - /* Background */ - /*guac_send_rect(io, GUAC_COMP_RATOP, current_surface, + /*guac_send_rect(io, GUAC_COMP_OVER, current_surface, x, y, width, height, guac_client_data->background.red, guac_client_data->background.green, guac_client_data->background.blue, 255);*/ + /* Draw */ + guac_send_copy(io, + (guac_layer*) glyph, 0, 0, width, height, + GUAC_COMP_OVER, current_surface, x, y); + } void guac_rdp_ui_end_draw_glyphs(rdpInst* inst, int x, int y, int cx, int cy) {