Skip to content

Commit bc03c01

Browse files
[WIN32K:DIB] USE_DIBLIB: Use new DIB_16BPP_AlphaBlend() (reactos#4568)
* [WIN32K:DIB] Fix 'DIB_16BPP_AlphaBlend' copypasta in a DPRINT() Addendum to 684c3d3 (r49275). * [WIN32K:DIB] USE_DIBLIB: Use new DIB_16BPP_AlphaBlend() Addendum to 7540c2e (r64953).
1 parent 72dcb3a commit bc03c01

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

win32ss/gdi/dib/alphablend.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ DIB_XXBPP_AlphaBlend(SURFOBJ* Dest, SURFOBJ* Source, RECTL* DestRect,
4343
EXLATEOBJ exloSrcRGB, exloDstRGB, exloRGBSrc;
4444
PFN_DIB_PutPixel pfnDibPutPixel = DibFunctionsForBitmapFormat[Dest->iBitmapFormat].DIB_PutPixel;
4545

46-
DPRINT("DIB_16BPP_AlphaBlend: srcRect: (%d,%d)-(%d,%d), dstRect: (%d,%d)-(%d,%d)\n",
46+
DPRINT("DIB_XXBPP_AlphaBlend: srcRect: (%d,%d)-(%d,%d), dstRect: (%d,%d)-(%d,%d)\n",
4747
SourceRect->left, SourceRect->top, SourceRect->right, SourceRect->bottom,
4848
DestRect->left, DestRect->top, DestRect->right, DestRect->bottom);
4949

win32ss/gdi/dib/dib_new.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ DIB_FUNCTIONS DibFunctionsForBitmapFormat[] =
5151
{
5252
DIB_16BPP_PutPixel, DIB_16BPP_GetPixel, DIB_16BPP_HLine, DIB_16BPP_VLine,
5353
0, 0, DIB_XXBPP_StretchBlt,
54-
DIB_16BPP_TransparentBlt, 0, DIB_XXBPP_AlphaBlend
54+
DIB_16BPP_TransparentBlt, 0, DIB_16BPP_AlphaBlend
5555
},
5656
/* BMF_24BPP */
5757
{

0 commit comments

Comments
 (0)