hacking NtGdiDdResetVisrgn so it lest say clip have not change. for now

svn path=/trunk/; revision=23168
This commit is contained in:
Magnus Olsen
2006-07-19 02:14:26 +00:00
parent 64918dadb2
commit ed119adcef
@@ -338,9 +338,18 @@ BOOL STDCALL NtGdiDdResetVisrgn(
HWND hwnd
)
{
UNIMPLEMENTED
DPRINT1("UNIMPLEMENTED NtGdiDdResetVisrgn \n");
/* see http://msdn.microsoft.com/library/default.asp?url=/library/en-us/winui/winui/windowsuserinterface/lowlevelclientsupport/graphics/ddresetvisrgn.asp
for more info, I pasted some part of it here
Clipping can change asynchronously from the point of view of user-mode threads.
The kernel-mode parts of DirectDraw and Microsoft Windows Graphics Device Interface (GDI)
maintain a counter that is incremented whenever the clipping list for the entire desktop
changes. A call to this function records this counter with every existing DirectDraw
primary surface on the system.
return 0;
*/
return TRUE;
}