Revision: 14701
          http://sourceforge.net/p/edk2/code/14701
Author:   oliviermartin
Date:     2013-09-23 09:39:40 +0000 (Mon, 23 Sep 2013)
Log Message:
-----------
LcdGraphicsOutputDxe: Fix BltVideoFill for non-32-bit architectures

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Olivier Martin <[email protected]>

Modified Paths:
--------------
    
trunk/edk2/ArmPlatformPkg/Drivers/LcdGraphicsOutputDxe/LcdGraphicsOutputBlt.c

Modified: 
trunk/edk2/ArmPlatformPkg/Drivers/LcdGraphicsOutputDxe/LcdGraphicsOutputBlt.c
===================================================================
--- 
trunk/edk2/ArmPlatformPkg/Drivers/LcdGraphicsOutputDxe/LcdGraphicsOutputBlt.c   
    2013-09-23 09:38:53 UTC (rev 14700)
+++ 
trunk/edk2/ArmPlatformPkg/Drivers/LcdGraphicsOutputDxe/LcdGraphicsOutputBlt.c   
    2013-09-23 09:39:40 UTC (rev 14701)
@@ -301,7 +301,7 @@
       DestinationAddr = (VOID *)((UINT32 *)FrameBufferBase + DestinationLine * 
HorizontalResolution  + DestinationX);
 
       // Fill the entire line
-      SetMemN( DestinationAddr, WidthInBytes, *((UINT32 *)EfiSourcePixel));
+      SetMem32 (DestinationAddr, WidthInBytes, *((UINT32 *)EfiSourcePixel));
     }
     break;
 

This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.


------------------------------------------------------------------------------
LIMITED TIME SALE - Full Year of Microsoft Training For Just $49.99!
1,500+ hours of tutorials including VisualStudio 2012, Windows 8, SharePoint
2013, SQL 2012, MVC 4, more. BEST VALUE: New Multi-Library Power Pack includes
Mobile, Cloud, Java, and UX Design. Lowest price ever! Ends 9/20/13. 
http://pubads.g.doubleclick.net/gampad/clk?id=58041151&iu=/4140/ostg.clktrk
_______________________________________________
edk2-commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/edk2-commits

Reply via email to