[PATCH 5/5] quartz: Trace the requested properties in IMemAllocator::SetProperties().

Zebediah Figura z.figura12 at gmail.com
Wed Jan 29 19:57:03 CST 2020


Signed-off-by: Zebediah Figura <z.figura12 at gmail.com>
---
 dlls/quartz/memallocator.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/dlls/quartz/memallocator.c b/dlls/quartz/memallocator.c
index 5ac8a72a818..2f5855e95b5 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))
-- 
2.25.0




More information about the wine-devel mailing list