Zebediah Figura : quartz: Trace the requested properties in IMemAllocator::SetProperties().

Alexandre Julliard julliard at winehq.org
Thu Jan 30 16:10:22 CST 2020


Module: wine
Branch: master
Commit: f78975ba28c326c60e9d2a8834c35b446d0b1de0
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=f78975ba28c326c60e9d2a8834c35b446d0b1de0

Author: Zebediah Figura <z.figura12 at 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 at gmail.com>
Signed-off-by: Alexandre Julliard <julliard at 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))




More information about the wine-cvs mailing list