Altered glyph drawing order.

This commit is contained in:
Michael Jumper 2011-09-13 10:02:32 -07:00
parent bfdd7f325f
commit 31268c3f6c

View File

@ -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, guac_client_data->foreground.blue,
255); 255);
/* Stencil */
guac_send_copy(io,
(guac_layer*) glyph, 0, 0, width, height,
GUAC_COMP_OVER, current_surface, x, y);
/* Background */ /* Background */
/*guac_send_rect(io, GUAC_COMP_RATOP, current_surface, /*guac_send_rect(io, GUAC_COMP_OVER, current_surface,
x, y, width, height, x, y, width, height,
guac_client_data->background.red, guac_client_data->background.red,
guac_client_data->background.green, guac_client_data->background.green,
guac_client_data->background.blue, guac_client_data->background.blue,
255);*/ 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) { void guac_rdp_ui_end_draw_glyphs(rdpInst* inst, int x, int y, int cx, int cy) {