Commit 3373e1e5 authored by André Hentschel's avatar André Hentschel Committed by Alexandre Julliard

gdi32: Add traces for the gamma functions.

parent 87b36442
...@@ -1286,6 +1286,7 @@ BOOL WINAPI GetDeviceGammaRamp(HDC hDC, LPVOID ptr) ...@@ -1286,6 +1286,7 @@ BOOL WINAPI GetDeviceGammaRamp(HDC hDC, LPVOID ptr)
BOOL ret = FALSE; BOOL ret = FALSE;
DC *dc = get_dc_ptr( hDC ); DC *dc = get_dc_ptr( hDC );
TRACE("%p, %p\n", hDC, ptr);
if( dc ) if( dc )
{ {
PHYSDEV physdev = GET_DC_PHYSDEV( dc, pGetDeviceGammaRamp ); PHYSDEV physdev = GET_DC_PHYSDEV( dc, pGetDeviceGammaRamp );
...@@ -1303,6 +1304,7 @@ BOOL WINAPI SetDeviceGammaRamp(HDC hDC, LPVOID ptr) ...@@ -1303,6 +1304,7 @@ BOOL WINAPI SetDeviceGammaRamp(HDC hDC, LPVOID ptr)
BOOL ret = FALSE; BOOL ret = FALSE;
DC *dc = get_dc_ptr( hDC ); DC *dc = get_dc_ptr( hDC );
TRACE("%p, %p\n", hDC, ptr);
if( dc ) if( dc )
{ {
PHYSDEV physdev = GET_DC_PHYSDEV( dc, pSetDeviceGammaRamp ); PHYSDEV physdev = GET_DC_PHYSDEV( dc, pSetDeviceGammaRamp );
...@@ -1317,7 +1319,7 @@ BOOL WINAPI SetDeviceGammaRamp(HDC hDC, LPVOID ptr) ...@@ -1317,7 +1319,7 @@ BOOL WINAPI SetDeviceGammaRamp(HDC hDC, LPVOID ptr)
*/ */
HCOLORSPACE WINAPI GetColorSpace(HDC hdc) HCOLORSPACE WINAPI GetColorSpace(HDC hdc)
{ {
/*FIXME Need to to whatever GetColorSpace actually does */ /*FIXME Need to do whatever GetColorSpace actually does */
return 0; return 0;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment