=?UTF-8?Q?Andr=C3=A9=20Hentschel=20?=: gdi32: Add traces for the gamma functions.

Alexandre Julliard julliard at winehq.org
Mon Sep 26 16:15:09 CDT 2011


Module: wine
Branch: master
Commit: 3373e1e587720e11c441ad88c3a0c67a710151e2
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=3373e1e587720e11c441ad88c3a0c67a710151e2

Author: André Hentschel <nerv at dawncrow.de>
Date:   Sun Sep 25 21:22:52 2011 +0200

gdi32: Add traces for the gamma functions.

---

 dlls/gdi32/dc.c |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/dlls/gdi32/dc.c b/dlls/gdi32/dc.c
index 65cc3f7..b50ea70 100644
--- a/dlls/gdi32/dc.c
+++ b/dlls/gdi32/dc.c
@@ -1286,6 +1286,7 @@ BOOL WINAPI GetDeviceGammaRamp(HDC hDC, LPVOID ptr)
     BOOL ret = FALSE;
     DC *dc = get_dc_ptr( hDC );
 
+    TRACE("%p, %p\n", hDC, ptr);
     if( dc )
     {
         PHYSDEV physdev = GET_DC_PHYSDEV( dc, pGetDeviceGammaRamp );
@@ -1303,6 +1304,7 @@ BOOL WINAPI SetDeviceGammaRamp(HDC hDC, LPVOID ptr)
     BOOL ret = FALSE;
     DC *dc = get_dc_ptr( hDC );
 
+    TRACE("%p, %p\n", hDC, ptr);
     if( dc )
     {
         PHYSDEV physdev = GET_DC_PHYSDEV( dc, pSetDeviceGammaRamp );
@@ -1317,7 +1319,7 @@ BOOL WINAPI SetDeviceGammaRamp(HDC hDC, LPVOID ptr)
  */
 HCOLORSPACE WINAPI GetColorSpace(HDC hdc)
 {
-/*FIXME    Need to to whatever GetColorSpace actually does */
+/*FIXME    Need to do whatever GetColorSpace actually does */
     return 0;
 }
 




More information about the wine-cvs mailing list