Zebediah Figura : quartz: Trace the requested properties in IMemAllocator::SetProperties().
Module: wine Branch: master Commit: f78975ba28c326c60e9d2a8834c35b446d0b1de0 URL: https://source.winehq.org/git/wine.git/?a=commit;h=f78975ba28c326c60e9d2a883... Author: Zebediah Figura <z.figura12(a)gmail.com> Date: Wed Jan 29 19:57:03 2020 -0600 quartz: Trace the requested properties in IMemAllocator::SetProperties(). Signed-off-by: Zebediah Figura <z.figura12(a)gmail.com> Signed-off-by: Alexandre Julliard <julliard(a)winehq.org> --- dlls/quartz/memallocator.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/dlls/quartz/memallocator.c b/dlls/quartz/memallocator.c index 5ac8a72a81..2f5855e95b 100644 --- a/dlls/quartz/memallocator.c +++ b/dlls/quartz/memallocator.c @@ -166,6 +166,9 @@ static HRESULT WINAPI BaseMemAllocator_SetProperties(IMemAllocator * iface, ALLO TRACE("(%p)->(%p, %p)\n", This, pRequest, pActual); + TRACE("Requested %d buffers, size %d, alignment %d, prefix %d.\n", + pRequest->cBuffers, pRequest->cbBuffer, pRequest->cbAlign, pRequest->cbPrefix); + EnterCriticalSection(This->pCritSect); { if (!list_empty(&This->used_list))
participants (1)
-
Alexandre Julliard