wineandroid: Remove no longer needed GetDeviceCaps() driver entry point.
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
c268c283f7
commit
3cfe3684aa
|
@ -188,21 +188,6 @@ static BOOL ANDROID_DeleteDC( PHYSDEV dev )
|
|||
}
|
||||
|
||||
|
||||
/***********************************************************************
|
||||
* ANDROID_GetDeviceCaps
|
||||
*/
|
||||
static INT ANDROID_GetDeviceCaps( PHYSDEV dev, INT cap )
|
||||
{
|
||||
switch(cap)
|
||||
{
|
||||
case BITSPIXEL: return screen_bpp;
|
||||
default:
|
||||
dev = GET_NEXT_PHYSDEV( dev, pGetDeviceCaps );
|
||||
return dev->funcs->pGetDeviceCaps( dev, cap );
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/***********************************************************************
|
||||
* ANDROID_ChangeDisplaySettingsEx
|
||||
*/
|
||||
|
@ -359,7 +344,7 @@ static const struct gdi_dc_funcs android_drv_funcs =
|
|||
NULL, /* pGetCharABCWidths */
|
||||
NULL, /* pGetCharABCWidthsI */
|
||||
NULL, /* pGetCharWidth */
|
||||
ANDROID_GetDeviceCaps, /* pGetDeviceCaps */
|
||||
NULL, /* pGetDeviceCaps */
|
||||
NULL, /* pGetDeviceGammaRamp */
|
||||
NULL, /* pGetFontData */
|
||||
NULL, /* pGetFontRealizationInfo */
|
||||
|
|
Loading…
Reference in New Issue