wineps.drv: Return ASPECTX/Y which represent current device resolution.

This commit is contained in:
Dmitry Timoshkov 2012-12-18 16:58:33 +08:00 committed by Alexandre Julliard
parent 0cfc1c848f
commit 671b977dd5
1 changed files with 4 additions and 5 deletions

View File

@ -421,14 +421,13 @@ static INT PSDRV_GetDeviceCaps( PHYSDEV dev, INT cap )
case RASTERCAPS:
return (RC_BITBLT | RC_BITMAP64 | RC_GDI20_OUTPUT | RC_DIBTODEV |
RC_STRETCHBLT | RC_STRETCHDIB); /* psdrv 0x6e99 */
/* Are aspect[XY] and logPixels[XY] correct? */
/* Need to handle different res in x and y => fix ppd */
case ASPECTX:
return physDev->logPixelsX;
case ASPECTY:
return physDev->pi->ppd->DefaultResolution;
return physDev->logPixelsY;
case ASPECTXY:
return (int)hypot( (double)physDev->pi->ppd->DefaultResolution,
(double)physDev->pi->ppd->DefaultResolution );
return (int)hypot( (double)physDev->logPixelsX,
(double)physDev->logPixelsY );
case LOGPIXELSX:
return MulDiv(physDev->logPixelsX,
physDev->Devmode->dmPublic.u1.s1.dmScale, 100);