Commit 3cfe3684 authored by Alexandre Julliard's avatar Alexandre Julliard

wineandroid: Remove no longer needed GetDeviceCaps() driver entry point.

parent c268c283
......@@ -189,21 +189,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
*/
LONG CDECL ANDROID_ChangeDisplaySettingsEx( LPCWSTR devname, LPDEVMODEW devmode,
......@@ -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 */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment