reactos/subsystems/win32/win32k/eng
Timo Kreuzer a3214996fc [WIN32K]
Rewrite the bitmap API. There were a lot of bugs. NtGdiCreateBitmap allowed a negative height, leading to either topdown or bottomup bitmaps, a behaviour that Windows doesn't have. The function copied the bitmap bits directly from the caller to the bitmap using RtlCopyMemory, ignoring different scanline length and direction (resulting in bitmaps being upside down), not SEH protected. This function (IntSetBitmapBits) is replaced by a better solution UnsafeSetBitmapBits, that takes these things into account. The name is chosen to give a hint that the function can/should be SEH protected. IntSetBitmapBits is still there, as its retarded behaviour is actually required in some places. There were also IntCreateBitmap and IntGdiCreateBitmap, now both being replaced by GreCreateBitmap. The code that set the palette is removed, as it's already done in SURFACE_AllocSurface, here gpalRGB is replaced with gpalBGR, fixing some inverted color issues. The alignment correction in SURFACE_bSetBitmapBits is reapplied, now that the callers are behaving as they are supposed to do.

svn path=/branches/reactos-yarotows/; revision=47641
2010-06-06 22:01:41 +00:00
..
i386
alphablend.c [WIN32K] 2010-06-06 06:32:01 +00:00
bitblt.c [WIN32K] 2010-06-05 21:19:41 +00:00
clip.c
copybits.c [WIN32K] 2010-06-05 21:19:41 +00:00
debug.c
device.c
driverobj.c
engbrush.c [WIN32K] 2010-05-22 14:54:48 +00:00
engevent.c
engmisc.c [WIN32K] 2010-06-06 05:45:36 +00:00
engwindow.c
error.c
float.c
gradient.c [WIN32K] 2010-06-05 21:19:41 +00:00
ldevobj.c
lineto.c [WIN32K] 2010-06-05 21:19:41 +00:00
mapping.c [WIN32K] 2010-06-06 05:47:31 +00:00
mem.c [WIN32K] 2010-06-06 03:12:56 +00:00
mouse.c
paint.c [WIN32K] 2010-06-05 21:19:41 +00:00
pdevobj.c [WIN32K] 2010-05-25 20:24:21 +00:00
perfcnt.c
rlecomp.c [WIN32K] 2010-06-06 07:02:15 +00:00
semaphor.c
sort.c
stretchblt.c [WIN32K] 2010-06-05 21:19:41 +00:00
string.c
surface.c [WIN32K] 2010-06-06 22:01:41 +00:00
transblt.c [WIN32K] 2010-06-05 21:19:41 +00:00
xlate.c [WIN32K] 2010-05-19 16:23:33 +00:00