gdi32: Partially implement HALFTONE stretch mode.
commit04b4d0f380943bed5328c2957b50d975ecb55635
authorZhiyi Zhang <zzhang@codeweavers.com>
Tue, 15 Jun 2021 03:40:42 +0000 (15 11:40 +0800)
committerAlexandre Julliard <julliard@winehq.org>
Tue, 15 Jun 2021 18:43:55 +0000 (15 20:43 +0200)
tree86f5c44709052689bc915fbed6e4314ce36f43e4
parent2191c0f4b5439f750dfe46e58f3e3cf38da1dde5
gdi32: Partially implement HALFTONE stretch mode.

COLORONCOLOR(STRETCH_DELETESCANS) was used in place of HALFTONE. COLORONCOLOR mode may delete rows
of pixels without trying to preserve information so it will cause Wine to render poorly when the
destination rectangle is small.

According to tests, HALFTONE mode uses box filter when doing integer downscaling and nearest
neighbor interpolation when doing upscaling in both horizontally and vertically. In other cases,
HALFTONE mode uses a lanczos3 like algorithm to interpolate pixels. There are also other heuristics
involved. For example, shrinking a 2x2 image to 1x1 may not use box filter depending on image data.
Since this algorithm is undocumented, it's difficult to reverse engineer the original algorithm and
produce identical results. Instead, this patch uses a naive implementation of bilinear interpolation
to implement HALFTONE mode and it produces good quality images.

For 8-bit and lower color depth images, nulldrv_StretchBlt should resize the images first and then
converts color depth.

Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=46375
Signed-off-by: Zhiyi Zhang <zzhang@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
dlls/gdi32/dibdrv/bitblt.c
dlls/gdi32/dibdrv/dibdrv.h
dlls/gdi32/dibdrv/primitives.c
dlls/user32/tests/cursoricon.c