Use nearest scaling for DRAW_ALPHA_BLEND since this is what win32 needs

DrvAlphaBlend is the only current user of DRAW_ALPHA_BLEND, and its
defined to do nearest (COLORONCOLOR) scaling, not bilinear.
This commit is contained in:
Alexander Larsson 2010-03-17 20:08:59 +01:00
parent 6664c12278
commit da21e89daa

View File

@ -2149,7 +2149,7 @@ static void canvas_draw_alpha_blend(SpiceCanvas *spice_canvas, SpiceRect *bbox,
bbox->top,
bbox->right - bbox->left,
bbox->bottom - bbox->top,
SPICE_IMAGE_SCALE_MODE_INTERPOLATE,
SPICE_IMAGE_SCALE_MODE_NEAREST,
alpha_blend->alpha);
}