mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 04:11:30 +00:00
30 lines
639 B
C
30 lines
639 B
C
|
|
||
|
#include "DibLib.h"
|
||
|
|
||
|
extern PFN_DIBFUNCTION gapfnBitBlt_PATCOPY_Solid[];
|
||
|
|
||
|
VOID
|
||
|
FASTCALL
|
||
|
Dib_BitBlt_BLACKNESS(PBLTDATA pBltData)
|
||
|
{
|
||
|
/* Pass it to the colorfil function */
|
||
|
pBltData->ulSolidColor = XLATEOBJ_iXlate(pBltData->pxlo, 0);
|
||
|
gapfnBitBlt_PATCOPY_Solid[pBltData->siDst.iFormat](pBltData);
|
||
|
}
|
||
|
|
||
|
VOID
|
||
|
FASTCALL
|
||
|
Dib_BitBlt_WHITENESS(PBLTDATA pBltData)
|
||
|
{
|
||
|
/* Pass it to the colorfil function */
|
||
|
pBltData->ulSolidColor = XLATEOBJ_iXlate(pBltData->pxlo, 0xFFFFFF);
|
||
|
gapfnBitBlt_PATCOPY_Solid[pBltData->siDst.iFormat](pBltData);
|
||
|
}
|
||
|
|
||
|
VOID
|
||
|
FASTCALL
|
||
|
Dib_BitBlt_NOOP(PBLTDATA pBltData)
|
||
|
{
|
||
|
UNREFERENCED_PARAMETER(pBltData);
|
||
|
}
|