]> git.proxmox.com Git - mirror_edk2.git/blobdiff - MdeModulePkg/Library/FrameBufferBltLib/FrameBufferBltLib.c
MdeModulePkg: Change use of EFI_D_* to DEBUG_*
[mirror_edk2.git] / MdeModulePkg / Library / FrameBufferBltLib / FrameBufferBltLib.c
index ff7979c962e3ca94a7d9a5cf8ab3035d22a76b2b..a71221d7de00e2ca95fff70cec9033d7f2c2e9fc 100644 (file)
@@ -209,17 +209,17 @@ FrameBufferBltLibVideoFill (
   // BltBuffer to Video: Source is BltBuffer, destination is Video\r
   //\r
   if (DestinationY + Height > Configure->Height) {\r
-    DEBUG ((EFI_D_VERBOSE, "VideoFill: Past screen (Y)\n"));\r
+    DEBUG ((DEBUG_VERBOSE, "VideoFill: Past screen (Y)\n"));\r
     return RETURN_INVALID_PARAMETER;\r
   }\r
 \r
   if (DestinationX + Width > Configure->Width) {\r
-    DEBUG ((EFI_D_VERBOSE, "VideoFill: Past screen (X)\n"));\r
+    DEBUG ((DEBUG_VERBOSE, "VideoFill: Past screen (X)\n"));\r
     return RETURN_INVALID_PARAMETER;\r
   }\r
 \r
   if (Width == 0 || Height == 0) {\r
-    DEBUG ((EFI_D_VERBOSE, "VideoFill: Width or Height is 0\n"));\r
+    DEBUG ((DEBUG_VERBOSE, "VideoFill: Width or Height is 0\n"));\r
     return RETURN_INVALID_PARAMETER;\r
   }\r
 \r
@@ -235,7 +235,7 @@ FrameBufferBltLibVideoFill (
       (((Uint32 << Configure->PixelShl[2]) >> Configure->PixelShr[2]) &\r
        Configure->PixelMasks.BlueMask)\r
       );\r
-  DEBUG ((EFI_D_VERBOSE, "VideoFill: color=0x%x, wide-fill=0x%x\n",\r
+  DEBUG ((DEBUG_VERBOSE, "VideoFill: color=0x%x, wide-fill=0x%x\n",\r
           Uint32, WideFill));\r
 \r
   //\r
@@ -267,7 +267,7 @@ FrameBufferBltLibVideoFill (
   }\r
 \r
   if (UseWideFill && (DestinationX == 0) && (Width == Configure->PixelsPerScanLine)) {\r
-    DEBUG ((EFI_D_VERBOSE, "VideoFill (wide, one-shot)\n"));\r
+    DEBUG ((DEBUG_VERBOSE, "VideoFill (wide, one-shot)\n"));\r
     Offset = DestinationY * Configure->PixelsPerScanLine;\r
     Offset = Configure->BytesPerPixel * Offset;\r
     Destination = Configure->FrameBuffer + Offset;\r
@@ -288,7 +288,7 @@ FrameBufferBltLibVideoFill (
       Destination = Configure->FrameBuffer + Offset;\r
 \r
       if (UseWideFill && (((UINTN) Destination & 7) == 0)) {\r
-        DEBUG ((EFI_D_VERBOSE, "VideoFill (wide)\n"));\r
+        DEBUG ((DEBUG_VERBOSE, "VideoFill (wide)\n"));\r
         SizeInBytes = WidthInBytes;\r
         if (SizeInBytes >= 8) {\r
           SetMem64 (Destination, SizeInBytes & ~7, WideFill);\r
@@ -299,7 +299,7 @@ FrameBufferBltLibVideoFill (
           CopyMem (Destination, &WideFill, SizeInBytes);\r
         }\r
       } else {\r
-        DEBUG ((EFI_D_VERBOSE, "VideoFill (not wide)\n"));\r
+        DEBUG ((DEBUG_VERBOSE, "VideoFill (not wide)\n"));\r
         if (!LineBufferReady) {\r
           CopyMem (Configure->LineBuffer, &WideFill, Configure->BytesPerPixel);\r
           for (IndexX = 1; IndexX < Width; ) {\r