From f2c7cb4122f86a99c8a9dc2e9fc69e53b0a9a1aa Mon Sep 17 00:00:00 2001 From: Gerd Hoffmann Date: Wed, 23 Jun 2010 08:53:04 +0200 Subject: [PATCH] qxl abi: parse QXLFill. Also adapt to tyops fix (s/rop_decriptor/rop_descriptor/). --- canvas_base.c | 2 +- gl_canvas.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/canvas_base.c b/canvas_base.c index 700fcb4..68ea1a6 100644 --- a/canvas_base.c +++ b/canvas_base.c @@ -2200,7 +2200,7 @@ static void canvas_draw_fill(SpiceCanvas *spice_canvas, SpiceRect *bbox, SpiceCl canvas_mask_pixman(canvas, &dest_region, &fill->mask, bbox->left, bbox->top); - rop = ropd_descriptor_to_rop(fill->rop_decriptor, + rop = ropd_descriptor_to_rop(fill->rop_descriptor, ROP_INPUT_BRUSH, ROP_INPUT_DEST); diff --git a/gl_canvas.c b/gl_canvas.c index b16f25f..2773eda 100644 --- a/gl_canvas.c +++ b/gl_canvas.c @@ -347,7 +347,7 @@ static void gl_canvas_draw_fill(SpiceCanvas *spice_canvas, SpiceRect *bbox, Spic set_clip(canvas, bbox, clip); set_mask(canvas, &fill->mask, bbox->left, bbox->top); set_brush(canvas, &fill->brush); - set_op(canvas, fill->rop_decriptor); + set_op(canvas, fill->rop_descriptor); SET_GLC_RECT(&rect, bbox); glc_fill_rect(canvas->glc, &rect);