gdiplus: Fix texture brush rotation.

Signed-off-by: Haoyang Chen <chenhaoyang@uniontech.com>
Signed-off-by: Esme Povirk <esme@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Haoyang Chen 2020-10-09 10:24:54 +08:00 committed by Alexandre Julliard
parent 535cf25f46
commit 2697b74d67
1 changed files with 1 additions and 1 deletions

View File

@ -1374,7 +1374,7 @@ static GpStatus brush_fill_pixels(GpGraphics *graphics, GpBrush *brush,
{
GpPointF point;
point.X = draw_points[0].X + x * x_dx + y * y_dx;
point.Y = draw_points[0].Y + y * x_dy + y * y_dy;
point.Y = draw_points[0].Y + x * x_dy + y * y_dy;
argb_pixels[x + y*cdwStride] = resample_bitmap_pixel(
&src_area, fill->bitmap_bits, bitmap->width, bitmap->height,