gdi32: Update the DC in ExtEscape().

Specifically, X11DRV_FLUSH_GL_DRAWABLE needs correct clip rects.
This commit is contained in:
Henri Verbeet 2011-10-25 21:20:27 +02:00 committed by Alexandre Julliard
parent a42774f042
commit aa7bbe1376

View File

@ -1225,6 +1225,7 @@ INT WINAPI ExtEscape( HDC hdc, INT nEscape, INT cbInput, LPCSTR lpszInData,
if (dc)
{
PHYSDEV physdev = GET_DC_PHYSDEV( dc, pExtEscape );
update_dc( dc );
ret = physdev->funcs->pExtEscape( physdev, nEscape, cbInput, lpszInData, cbOutput, lpszOutData );
release_dc_ptr( dc );
}