gdi32: Add traces for the gamma functions.
authorAndré Hentschel <nerv@dawncrow.de>
Sun, 25 Sep 2011 19:22:52 +0000 (21:22 +0200)
committerAlexandre Julliard <julliard@winehq.org>
Mon, 26 Sep 2011 10:20:35 +0000 (12:20 +0200)
dlls/gdi32/dc.c

index 65cc3f78a3ac55840de4299440e0379042d0e405..b50ea7050c8ffb2d5f4418085033ac53daabd184 100644 (file)
@@ -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;
 }