mirror of
https://github.com/reactos/reactos.git
synced 2025-08-06 10:12:58 +00:00
[WIN32K:DIB] USE_DIBLIB: Use new DIB_16BPP_AlphaBlend() (#4568)
* [WIN32K:DIB] Fix 'DIB_16BPP_AlphaBlend' copypasta in a DPRINT() Addendum to684c3d3
(r49275). * [WIN32K:DIB] USE_DIBLIB: Use new DIB_16BPP_AlphaBlend() Addendum to7540c2e
(r64953).
This commit is contained in:
parent
72dcb3a11f
commit
bc03c010b3
2 changed files with 2 additions and 2 deletions
|
@ -43,7 +43,7 @@ DIB_XXBPP_AlphaBlend(SURFOBJ* Dest, SURFOBJ* Source, RECTL* DestRect,
|
||||||
EXLATEOBJ exloSrcRGB, exloDstRGB, exloRGBSrc;
|
EXLATEOBJ exloSrcRGB, exloDstRGB, exloRGBSrc;
|
||||||
PFN_DIB_PutPixel pfnDibPutPixel = DibFunctionsForBitmapFormat[Dest->iBitmapFormat].DIB_PutPixel;
|
PFN_DIB_PutPixel pfnDibPutPixel = DibFunctionsForBitmapFormat[Dest->iBitmapFormat].DIB_PutPixel;
|
||||||
|
|
||||||
DPRINT("DIB_16BPP_AlphaBlend: srcRect: (%d,%d)-(%d,%d), dstRect: (%d,%d)-(%d,%d)\n",
|
DPRINT("DIB_XXBPP_AlphaBlend: srcRect: (%d,%d)-(%d,%d), dstRect: (%d,%d)-(%d,%d)\n",
|
||||||
SourceRect->left, SourceRect->top, SourceRect->right, SourceRect->bottom,
|
SourceRect->left, SourceRect->top, SourceRect->right, SourceRect->bottom,
|
||||||
DestRect->left, DestRect->top, DestRect->right, DestRect->bottom);
|
DestRect->left, DestRect->top, DestRect->right, DestRect->bottom);
|
||||||
|
|
||||||
|
|
|
@ -51,7 +51,7 @@ DIB_FUNCTIONS DibFunctionsForBitmapFormat[] =
|
||||||
{
|
{
|
||||||
DIB_16BPP_PutPixel, DIB_16BPP_GetPixel, DIB_16BPP_HLine, DIB_16BPP_VLine,
|
DIB_16BPP_PutPixel, DIB_16BPP_GetPixel, DIB_16BPP_HLine, DIB_16BPP_VLine,
|
||||||
0, 0, DIB_XXBPP_StretchBlt,
|
0, 0, DIB_XXBPP_StretchBlt,
|
||||||
DIB_16BPP_TransparentBlt, 0, DIB_XXBPP_AlphaBlend
|
DIB_16BPP_TransparentBlt, 0, DIB_16BPP_AlphaBlend
|
||||||
},
|
},
|
||||||
/* BMF_24BPP */
|
/* BMF_24BPP */
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue