Module: wine Branch: master Commit: 53036b6917329eb8572f78ba1e5ef2cbd85dee3f URL: http://source.winehq.org/git/wine.git/?a=commit;h=53036b6917329eb8572f78ba1e...
Author: Ken Thomases ken@codeweavers.com Date: Wed Sep 11 23:46:35 2013 -0500
winemac: Trace the pixel format in DescribePixelFormat().
---
dlls/winemac.drv/opengl.c | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/dlls/winemac.drv/opengl.c b/dlls/winemac.drv/opengl.c index f2407fc..4749b44 100644 --- a/dlls/winemac.drv/opengl.c +++ b/dlls/winemac.drv/opengl.c @@ -3363,6 +3363,8 @@ int macdrv_wglDescribePixelFormat(HDC hdc, int fmt, UINT size, PIXELFORMATDESCRI descr->cStencilBits = pf->stencil_bits; descr->cAuxBuffers = pf->aux_buffers; descr->iLayerType = PFD_MAIN_PLANE; + + TRACE("%s\n", debugstr_pf(pf)); return nb_displayable_formats; }