gdi32: Add the ability to track whether we should defer to the graphics driver.
This commit is contained in:
parent
ed23e3de5c
commit
842d49939d
|
@ -118,7 +118,10 @@ static HBITMAP CDECL dibdrv_SelectBitmap( PHYSDEV dev, HBITMAP bitmap )
|
||||||
if (!bmp) return 0;
|
if (!bmp) return 0;
|
||||||
assert(bmp->dib);
|
assert(bmp->dib);
|
||||||
|
|
||||||
init_dib(&pdev->dib, &bmp->dib->dsBmih, bmp->dib->dsBitfields, bmp->dib->dsBm.bmBits);
|
pdev->defer = 0;
|
||||||
|
|
||||||
|
if(!init_dib(&pdev->dib, &bmp->dib->dsBmih, bmp->dib->dsBitfields, bmp->dib->dsBm.bmBits))
|
||||||
|
pdev->defer |= DEFER_FORMAT;
|
||||||
|
|
||||||
GDI_ReleaseObj( bitmap );
|
GDI_ReleaseObj( bitmap );
|
||||||
|
|
||||||
|
|
|
@ -58,5 +58,18 @@ HPEN CDECL dibdrv_SelectPen( PHYSDEV dev, HPEN hpen )
|
||||||
|
|
||||||
pdev->pen_color = pdev->dib.funcs->colorref_to_pixel(&pdev->dib, logpen.lopnColor);
|
pdev->pen_color = pdev->dib.funcs->colorref_to_pixel(&pdev->dib, logpen.lopnColor);
|
||||||
|
|
||||||
|
pdev->defer |= DEFER_PEN;
|
||||||
|
|
||||||
|
switch(logpen.lopnStyle & PS_STYLE_MASK)
|
||||||
|
{
|
||||||
|
case PS_SOLID:
|
||||||
|
if(logpen.lopnStyle & PS_GEOMETRIC) break;
|
||||||
|
if(logpen.lopnWidth.x > 1) break;
|
||||||
|
pdev->defer &= ~DEFER_PEN;
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
return next->funcs->pSelectPen( next, hpen );
|
return next->funcs->pSelectPen( next, hpen );
|
||||||
}
|
}
|
||||||
|
|
|
@ -97,10 +97,15 @@ typedef struct dibdrv_physdev
|
||||||
struct gdi_physdev dev;
|
struct gdi_physdev dev;
|
||||||
dib_info dib;
|
dib_info dib;
|
||||||
|
|
||||||
|
DWORD defer;
|
||||||
|
|
||||||
/* pen */
|
/* pen */
|
||||||
DWORD pen_color;
|
DWORD pen_color;
|
||||||
} dibdrv_physdev;
|
} dibdrv_physdev;
|
||||||
|
|
||||||
|
#define DEFER_FORMAT 1
|
||||||
|
#define DEFER_PEN 2
|
||||||
|
|
||||||
typedef struct tagDC_FUNCS
|
typedef struct tagDC_FUNCS
|
||||||
{
|
{
|
||||||
INT (CDECL *pAbortDoc)(PHYSDEV);
|
INT (CDECL *pAbortDoc)(PHYSDEV);
|
||||||
|
|
Loading…
Reference in New Issue