[ros-diffs] [gedmurphy] 29327: remove some debug output I missed

gedmurphy at svn.reactos.org gedmurphy at svn.reactos.org
Mon Oct 1 13:59:11 CEST 2007


Author: gedmurphy
Date: Mon Oct  1 15:59:11 2007
New Revision: 29327

URL: http://svn.reactos.org/svn/reactos?rev=29327&view=rev
Log:
remove some debug output I missed

Modified:
    trunk/reactos/subsystems/win32/win32k/objects/dibobj.c

Modified: trunk/reactos/subsystems/win32/win32k/objects/dibobj.c
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/subsystems/win32/win32k/objects/dibobj.c?rev=29327&r1=29326&r2=29327&view=diff
==============================================================================
--- trunk/reactos/subsystems/win32/win32k/objects/dibobj.c (original)
+++ trunk/reactos/subsystems/win32/win32k/objects/dibobj.c Mon Oct  1 15:59:11 2007
@@ -1372,18 +1372,14 @@
   // Determine Bits Per Pixel
   bits = bmi->bmiHeader.biBitCount;
 
-  //DPRINT1("%d bits\n", bits);
-
   // Determine paletteType from Bits Per Pixel
   if (bits <= 8)
     {
-        //DPRINT1("8\n");
       *paletteType = PAL_INDEXED;
       RedMask = GreenMask = BlueMask = 0;
     }
   else if(bits < 24)
     {
-        //DPRINT1("24\n");
       *paletteType = PAL_BITFIELDS;
       RedMask = 0xf800;
       GreenMask = 0x07e0;
@@ -1391,7 +1387,6 @@
     }
   else
     {
-        //DPRINT1("else\n");
       *paletteType = PAL_BGR;
       RedMask = 0xff0000;
       GreenMask = 0x00ff00;
@@ -1409,17 +1404,14 @@
 
   if (PAL_INDEXED == *paletteType)
     {
-        //DPRINT1("in\n");
       hPal = PALETTE_AllocPaletteIndexedRGB(ColorCount, (RGBQUAD*)bmi->bmiColors);
     }
   else
     {
-        //DPRINT1("out\n");
       hPal = PALETTE_AllocPalette(*paletteType, ColorCount,
                                   (ULONG*) palEntries,
                                   RedMask, GreenMask, BlueMask );
     }
-  //DPRINT1("returning %p\n", hPal);
 
   return hPal;
 }




More information about the Ros-diffs mailing list