diff options
author | Ruiyu Ni <ruiyu.ni@intel.com> | 2015-12-01 06:52:44 +0000 |
---|---|---|
committer | niruiyu <niruiyu@Edk2> | 2015-12-01 06:52:44 +0000 |
commit | ecbff749459a4fff56f9054d1792b10fb4939673 (patch) | |
tree | 54df9887c60ece7598ba0beb4554a8d1fcbc41e5 /MdeModulePkg/Library | |
parent | 47fea6afd74af76c7e2a2b03d319b7ac035ac26a (diff) | |
download | edk2-platforms-ecbff749459a4fff56f9054d1792b10fb4939673.tar.xz |
MdeModulePkg/BmpImageDecoderLib: Fix function header comments
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Ruiyu Ni <ruiyu.ni@intel.com>
Reviewed-by: Shumin Qiu <shumin.qiu@intel.com>
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@19082 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdeModulePkg/Library')
-rw-r--r-- | MdeModulePkg/Library/BmpImageDecoderLib/BmpImageDecoderLib.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/MdeModulePkg/Library/BmpImageDecoderLib/BmpImageDecoderLib.c b/MdeModulePkg/Library/BmpImageDecoderLib/BmpImageDecoderLib.c index 28afd4fa9a..6445c06c85 100644 --- a/MdeModulePkg/Library/BmpImageDecoderLib/BmpImageDecoderLib.c +++ b/MdeModulePkg/Library/BmpImageDecoderLib/BmpImageDecoderLib.c @@ -24,12 +24,12 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. Convert a *.BMP graphics image to a callee allocated GOP blt buffer.
@param ImageFormat Format of the image file.
- @param BmpImage Pointer to BMP file
- @param BmpImageSize Number of bytes in BmpImage
+ @param BmpImage Pointer to BMP file.
+ @param BmpImageSize Number of bytes in BmpImage.
@param GopBlt Buffer containing GOP version of BmpImage.
@param GopBltSize Size of GopBlt in bytes.
- @param PixelHeight Height of GopBlt/BmpImage in pixels
- @param PixelWidth Width of GopBlt/BmpImage in pixels
+ @param PixelWidth Width of GopBlt/BmpImage in pixels.
+ @param PixelHeight Height of GopBlt/BmpImage in pixels.
@retval EFI_SUCCESS GopBlt and GopBltSize are returned.
@retval EFI_INVALID_PARAMETER GopBlt or GopBltSize is NULL.
|