gdi32: Remove no longer needed metafile special case from NtGdiExtTextOutW.
Signed-off-by: Jacek Caban <jacek@codeweavers.com> Signed-off-by: Huw Davies <huw@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
a8131cb3e7
commit
5e012f7bec
|
@ -5020,7 +5020,6 @@ BOOL WINAPI NtGdiExtTextOutW( HDC hdc, INT x, INT y, UINT flags, const RECT *lpr
|
|||
SIZE sz;
|
||||
RECT rc;
|
||||
POINT *deltas = NULL, width = {0, 0};
|
||||
DWORD type;
|
||||
DC * dc = get_dc_ptr( hdc );
|
||||
PHYSDEV physdev;
|
||||
INT breakRem;
|
||||
|
@ -5041,13 +5040,6 @@ BOOL WINAPI NtGdiExtTextOutW( HDC hdc, INT x, INT y, UINT flags, const RECT *lpr
|
|||
|
||||
update_dc( dc );
|
||||
physdev = GET_DC_PHYSDEV( dc, pExtTextOut );
|
||||
type = GetObjectType(hdc);
|
||||
if(type == OBJ_METADC || type == OBJ_ENHMETADC)
|
||||
{
|
||||
ret = physdev->funcs->pExtTextOut( physdev, x, y, flags, lprect, str, count, lpDx );
|
||||
release_dc_ptr( dc );
|
||||
return ret;
|
||||
}
|
||||
|
||||
if (flags & ETO_RTLREADING) align |= TA_RTLREADING;
|
||||
if (layout & LAYOUT_RTL)
|
||||
|
|
Loading…
Reference in New Issue