mirror of
https://github.com/FunkyFr3sh/cnc-ddraw.git
synced 2025-03-24 17:49:52 +01:00
log NOT_IMPLEMENTED for clipper functions
This commit is contained in:
parent
e012b5c01a
commit
a0d28a0e6e
@ -45,7 +45,7 @@ HRESULT __stdcall IDirectDrawClipper__GetClipList(
|
|||||||
LPDWORD lpdwSiz)
|
LPDWORD lpdwSiz)
|
||||||
{
|
{
|
||||||
TRACE(
|
TRACE(
|
||||||
"-> %s(This=%p, lpRect=%p, lpClipList=%p, lpdwSiz=%p)\n",
|
"NOT_IMPLEMENTED -> %s(This=%p, lpRect=%p, lpClipList=%p, lpdwSiz=%p)\n",
|
||||||
__FUNCTION__,
|
__FUNCTION__,
|
||||||
This,
|
This,
|
||||||
lpRect,
|
lpRect,
|
||||||
@ -54,7 +54,7 @@ HRESULT __stdcall IDirectDrawClipper__GetClipList(
|
|||||||
|
|
||||||
HRESULT ret = ddc_GetClipList(This, lpRect, lpClipList, lpdwSiz);
|
HRESULT ret = ddc_GetClipList(This, lpRect, lpClipList, lpdwSiz);
|
||||||
|
|
||||||
TRACE("<- %s\n", __FUNCTION__);
|
TRACE("NOT_IMPLEMENTED <- %s\n", __FUNCTION__);
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -84,9 +84,9 @@ HRESULT __stdcall IDirectDrawClipper__IsClipListChanged(IDirectDrawClipperImpl*
|
|||||||
|
|
||||||
HRESULT __stdcall IDirectDrawClipper__SetClipList(IDirectDrawClipperImpl* This, LPRGNDATA lpClipList, DWORD dwFlags)
|
HRESULT __stdcall IDirectDrawClipper__SetClipList(IDirectDrawClipperImpl* This, LPRGNDATA lpClipList, DWORD dwFlags)
|
||||||
{
|
{
|
||||||
TRACE("-> %s(This=%p, lpClipList=%p, dwFlags=%08X)\n", __FUNCTION__, This, lpClipList, dwFlags);
|
TRACE("NOT_IMPLEMENTED -> %s(This=%p, lpClipList=%p, dwFlags=%08X)\n", __FUNCTION__, This, lpClipList, dwFlags);
|
||||||
HRESULT ret = ddc_SetClipList(This, lpClipList, dwFlags);
|
HRESULT ret = ddc_SetClipList(This, lpClipList, dwFlags);
|
||||||
TRACE("<- %s\n", __FUNCTION__);
|
TRACE("NOT_IMPLEMENTED <- %s\n", __FUNCTION__);
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user