public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
* [Patch 00/10] Add BmpSupportLib class and instance
@ 2018-02-07 22:58 Kinney, Michael D
  2018-02-07 22:58 ` [Patch 01/10] MdeModulePkg: " Kinney, Michael D
                   ` (11 more replies)
  0 siblings, 12 replies; 25+ messages in thread
From: Kinney, Michael D @ 2018-02-07 22:58 UTC (permalink / raw)
  To: edk2-devel
  Cc: Sean Brogan, Jiewen Yao, Star Zeng, Eric Dong, Ruiyu Ni,
	Laszlo Ersek, Ard Biesheuvel, Jordan Justen, David Wei, Mang Guo,
	Kelly Steele, Hao Wu, Andrew Fish, Michael D Kinney

https://bugzilla.tianocore.org/show_bug.cgi?id=800

Branch for review:
https://github.com/mdkinney/edk2/commits/Bug_800_BmpSupportLib_V2

Based on content from the following branch/commits:
https://github.com/Microsoft/MS_UEFI/tree/share/MsCapsuleSupport
https://github.com/Microsoft/MS_UEFI/commit/33bab4031a417d7d5a7d356c15a14c2e60302b2d
https://github.com/Microsoft/MS_UEFI/commit/ca516b1a61315c2d823f453e12d2135098f53d61
https://github.com/Microsoft/MS_UEFI/commit/2b9f111f2e74a4c2ef4c4e32379e111f016dbd9b

Add BmpSupportLib class and instances that provides services to
convert a BMP graphics image to a GOP BLT buffer and to convert
a GOP BLT buffer to a BMP graphics image.

Cc: Sean Brogan <sean.brogan@microsoft.com>
Cc: Jiewen Yao <jiewen.yao@intel.com>
Cc: Star Zeng <star.zeng@intel.com>
Cc: Eric Dong <eric.dong@intel.com>
Cc: Ruiyu Ni <ruiyu.ni@intel.com>
Cc: Laszlo Ersek <lersek@redhat.com>
Cc: Ard Biesheuvel <ard.biesheuvel@linaro.org>
Cc: Jordan Justen <jordan.l.justen@intel.com>
Cc: David Wei <david.wei@intel.com>
Cc: Mang Guo <mang.guo@intel.com>
Cc: Kelly Steele <kelly.steele@intel.com>
Cc: Hao Wu <hao.a.wu@intel.com>
Cc: Andrew Fish <afish@apple.com>
Contributed-under: TianoCore Contribution Agreement 1.1
Signed-off-by: Michael D Kinney <michael.d.kinney@intel.com>

Kinney, Michael D (1):
  MdeModulePkg: Add BmpSupportLib class and instance

Michael D Kinney (9):
  MdeModulePkg/DxeCapsuleLibFmp: Use BmpSupportLib
  MdeModulePkg/BootGraphicsResourceTableDxe: Use BmpSupportLib
  IntelFrameworkModulePkg/GenericBdsLib: Use BmpSupportLib
  OvmfPkg: Add SafeIntLib and BmpSupportLib to DSC files
  Vlv2TbltDevicePkg/Override/GenericBdsLib: Use BmpSupportLib
  QuarkPlatformPkg: Add SafeIntLib and BmpSupportLib to DSC files
  DuetPkg: Add SafeIntLib and BmpSupportLib to DSC files
  EmulatorPkg: Add SafeIntLib and BmpSupportLib to DSC files
  ArmVirtPkg: Add SafeIntLib and BmpSupportLib to DSC files

 ArmVirtPkg/ArmVirt.dsc.inc                         |   4 +-
 DuetPkg/DuetPkgIa32.dsc                            |   4 +-
 DuetPkg/DuetPkgX64.dsc                             |   4 +-
 EmulatorPkg/EmulatorPkg.dsc                        |   2 +
 .../IntelFrameworkModulePkg.dsc                    |   4 +-
 .../Library/GenericBdsLib/BdsConsole.c             | 250 +--------
 .../Library/GenericBdsLib/GenericBdsLib.inf        |   3 +-
 .../Library/GenericBdsLib/InternalBdsLib.h         |   3 +-
 MdeModulePkg/Include/Library/BmpSupportLib.h       | 105 ++++
 .../BaseBmpSupportLib/BaseBmpSupportLib.inf        |  49 ++
 .../BaseBmpSupportLib/BaseBmpSupportLib.uni        |  20 +
 .../Library/BaseBmpSupportLib/BmpSupportLib.c      | 583 +++++++++++++++++++++
 .../Library/DxeCapsuleLibFmp/DxeCapsuleLib.c       | 268 +---------
 .../Library/DxeCapsuleLibFmp/DxeCapsuleLib.inf     |   3 +-
 .../DxeCapsuleLibFmp/DxeRuntimeCapsuleLib.inf      |   3 +-
 MdeModulePkg/MdeModulePkg.dec                      |   6 +-
 MdeModulePkg/MdeModulePkg.dsc                      |   3 +
 .../BootGraphicsResourceTableDxe.c                 | 425 +++++++--------
 .../BootGraphicsResourceTableDxe.inf               |   4 +-
 OvmfPkg/OvmfPkgIa32.dsc                            |   2 +
 OvmfPkg/OvmfPkgIa32X64.dsc                         |   2 +
 OvmfPkg/OvmfPkgX64.dsc                             |   2 +
 QuarkPlatformPkg/Quark.dsc                         |   4 +-
 .../Library/GenericBdsLib/BdsConsole.c             | 251 +--------
 .../Library/GenericBdsLib/GenericBdsLib.inf        |   3 +-
 .../Library/GenericBdsLib/InternalBdsLib.h         |   3 +-
 Vlv2TbltDevicePkg/PlatformPkgGccX64.dsc            |   4 +-
 Vlv2TbltDevicePkg/PlatformPkgIA32.dsc              |   4 +-
 Vlv2TbltDevicePkg/PlatformPkgX64.dsc               |   4 +-
 29 files changed, 1018 insertions(+), 1004 deletions(-)
 create mode 100644 MdeModulePkg/Include/Library/BmpSupportLib.h
 create mode 100644 MdeModulePkg/Library/BaseBmpSupportLib/BaseBmpSupportLib.inf
 create mode 100644 MdeModulePkg/Library/BaseBmpSupportLib/BaseBmpSupportLib.uni
 create mode 100644 MdeModulePkg/Library/BaseBmpSupportLib/BmpSupportLib.c

-- 
2.14.2.windows.3



^ permalink raw reply	[flat|nested] 25+ messages in thread

end of thread, other threads:[~2018-02-11  0:13 UTC | newest]

Thread overview: 25+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-02-07 22:58 [Patch 00/10] Add BmpSupportLib class and instance Kinney, Michael D
2018-02-07 22:58 ` [Patch 01/10] MdeModulePkg: " Kinney, Michael D
2018-02-08  5:10   ` Zeng, Star
2018-02-07 22:58 ` [Patch 02/10] MdeModulePkg/DxeCapsuleLibFmp: Use BmpSupportLib Kinney, Michael D
2018-02-07 22:58 ` [Patch 03/10] MdeModulePkg/BootGraphicsResourceTableDxe: " Kinney, Michael D
2018-02-07 22:58 ` [Patch 04/10] IntelFrameworkModulePkg/GenericBdsLib: " Kinney, Michael D
2018-02-07 22:58 ` [Patch 05/10] OvmfPkg: Add SafeIntLib and BmpSupportLib to DSC files Kinney, Michael D
2018-02-07 23:17   ` Laszlo Ersek
2018-02-07 23:48     ` Kinney, Michael D
2018-02-08  0:35       ` Laszlo Ersek
2018-02-08  7:43         ` Ard Biesheuvel
2018-02-08  8:32           ` Jordan Justen
2018-02-08  9:25             ` Laszlo Ersek
2018-02-08  9:32               ` Ard Biesheuvel
2018-02-08  9:47                 ` Laszlo Ersek
2018-02-08  8:55           ` Laszlo Ersek
2018-02-07 22:58 ` [Patch 06/10] Vlv2TbltDevicePkg/Override/GenericBdsLib: Use BmpSupportLib Kinney, Michael D
2018-02-07 22:58 ` [Patch 07/10] QuarkPlatformPkg: Add SafeIntLib and BmpSupportLib to DSC files Kinney, Michael D
2018-02-07 22:58 ` [Patch 08/10] DuetPkg: " Kinney, Michael D
2018-02-07 22:58 ` [Patch 09/10] EmulatorPkg: " Kinney, Michael D
2018-02-08  8:33   ` Jordan Justen
2018-02-07 22:58 ` [Patch 10/10] ArmVirtPkg: " Kinney, Michael D
2018-02-07 23:25   ` Laszlo Ersek
2018-02-11  0:16 ` [Patch 00/10] Add BmpSupportLib class and instance Bret Barkelew
2018-02-11  0:19 ` Bret Barkelew

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox