mirror of https://github.com/acidanthera/audk.git
MdePkg/HiiImageEx: Fix incorrect comments of functions
https://bugzilla.tianocore.org/show_bug.cgi?id=383 Cc: Liming Gao <liming.gao@intel.com> Cc: Ruiyu Ni <ruiyu.ni@intel.com> Cc: Eric Dong <eric.dong@intel.com> Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Dandan Bi <dandan.bi@intel.com> Reviewed-by: Ruiyu Ni <ruiyu.ni@intel.com> Reviewed-by: Liming Gao <liming.gao@intel.com>
This commit is contained in:
parent
8057622527
commit
b16dd6c86e
|
@ -28,8 +28,7 @@ typedef struct _EFI_HII_IMAGE_EX_PROTOCOL EFI_HII_IMAGE_EX_PROTOCOL;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
The prototype of this extension function is the same with EFI_HII_IMAGE_PROTOCOL.NewImage().
|
The prototype of this extension function is the same with EFI_HII_IMAGE_PROTOCOL.NewImage().
|
||||||
Same with EFI_HII_IMAGE_PROTOCOL.NewImage().This protocol invokes
|
This protocol invokes EFI_HII_IMAGE_PROTOCOL.NewImage() implicitly.
|
||||||
EFI_HII_IMAGE_PROTOCOL.NewImage() implicitly.
|
|
||||||
|
|
||||||
@param This A pointer to the EFI_HII_IMAGE_EX_PROTOCOL instance.
|
@param This A pointer to the EFI_HII_IMAGE_EX_PROTOCOL instance.
|
||||||
@param PackageList Handle of the package list where this image will
|
@param PackageList Handle of the package list where this image will
|
||||||
|
@ -57,22 +56,24 @@ EFI_STATUS
|
||||||
/**
|
/**
|
||||||
Return the information about the image, associated with the package list.
|
Return the information about the image, associated with the package list.
|
||||||
The prototype of this extension function is the same with EFI_HII_IMAGE_PROTOCOL.GetImage().
|
The prototype of this extension function is the same with EFI_HII_IMAGE_PROTOCOL.GetImage().
|
||||||
Same with EFI_HII_IMAGE_PROTOCOL.SetImage(),this protocol invokes EFI_HII_IMAGE_PROTOCOL.SetImage() implicitly.
|
|
||||||
|
This function is similar to EFI_HII_IMAGE_PROTOCOL.GetImage().The difference is that
|
||||||
|
this function will locate all EFI_HII_IMAGE_DECODER_PROTOCOL instances installed in the
|
||||||
|
system if the decoder of the certain image type is not supported by the
|
||||||
|
EFI_HII_IMAGE_EX_PROTOCOL. The function will attempt to decode the image to the
|
||||||
|
EFI_IMAGE_INPUT using the first EFI_HII_IMAGE_DECODER_PROTOCOL instance that
|
||||||
|
supports the requested image type.
|
||||||
|
|
||||||
@param This A pointer to the EFI_HII_IMAGE_EX_PROTOCOL instance.
|
@param This A pointer to the EFI_HII_IMAGE_EX_PROTOCOL instance.
|
||||||
@param PackageList Handle of the package list where this image will
|
@param PackageList The package list in the HII database to search for the
|
||||||
be searched.
|
specified image.
|
||||||
@param ImageId The image's id,, which is unique within
|
@param ImageId The image's id, which is unique within PackageList.
|
||||||
PackageList.
|
|
||||||
@param Image Points to the image.
|
@param Image Points to the image.
|
||||||
|
|
||||||
@retval EFI_SUCCESS The new image was returned successfully.
|
@retval EFI_SUCCESS The new image was returned successfully.
|
||||||
@retval EFI_NOT_FOUND The image specified by ImageId is not in the
|
@retval EFI_NOT_FOUND The image specified by ImageId is not available. The specified
|
||||||
database. The specified PackageList is not in
|
PackageList is not in the Database.
|
||||||
the database.
|
@retval EFI_INVALID_PARAMETER Image was NULL or ImageId was 0.
|
||||||
@retval EFI_BUFFER_TOO_SMALL The buffer specified by ImageSize is too small to
|
|
||||||
hold the image.
|
|
||||||
@retval EFI_INVALID_PARAMETER The Image or ImageSize was NULL.
|
|
||||||
@retval EFI_OUT_OF_RESOURCES The bitmap could not be retrieved because there
|
@retval EFI_OUT_OF_RESOURCES The bitmap could not be retrieved because there
|
||||||
was not enough memory.
|
was not enough memory.
|
||||||
|
|
||||||
|
@ -87,21 +88,22 @@ EFI_STATUS
|
||||||
);
|
);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
Change the information about the image. The prototype of this extension
|
Change the information about the image.
|
||||||
function is the same with EFI_HII_IMAGE_PROTOCOL.SetImage(). Same with
|
|
||||||
EFI_HII_IMAGE_PROTOCOL.DrawImageId(),this protocol invokes EFI_HII_IMAGE_PROTOCOL.DrawImageId() implicitly.
|
Same with EFI_HII_IMAGE_PROTOCOL.SetImage(),this protocol invokes
|
||||||
|
EFI_HII_IMAGE_PROTOCOL.SetImage()implicitly.
|
||||||
|
|
||||||
@param This A pointer to the EFI_HII_IMAGE_EX_PROTOCOL instance.
|
@param This A pointer to the EFI_HII_IMAGE_EX_PROTOCOL instance.
|
||||||
@param PackageList The package list containing the images.
|
@param PackageList The package list containing the images.
|
||||||
@param ImageId The image's id,, which is unique within
|
@param ImageId The image's id, which is unique within PackageList.
|
||||||
PackageList.
|
|
||||||
@param Image Points to the image.
|
@param Image Points to the image.
|
||||||
|
|
||||||
@retval EFI_SUCCESS The new image was updated successfully.
|
@retval EFI_SUCCESS The new image was successfully updated.
|
||||||
@retval EFI_NOT_FOUND The image specified by ImageId is not in the
|
@retval EFI_NOT_FOUND The image specified by ImageId is not in the
|
||||||
database. The specified PackageList is not in
|
database. The specified PackageList is not in
|
||||||
the database.
|
the database.
|
||||||
@retval EFI_INVALID_PARAMETER The Image was NULL.
|
@retval EFI_INVALID_PARAMETER The Image was NULL, the ImageId was 0 or
|
||||||
|
the Image->Bitmap was NULL.
|
||||||
|
|
||||||
**/
|
**/
|
||||||
typedef
|
typedef
|
||||||
|
@ -114,9 +116,11 @@ EFI_STATUS
|
||||||
);
|
);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
Renders an image to a bitmap or to the display. The prototype of this extension
|
Renders an image to a bitmap or to the display.
|
||||||
function is the same with EFI_HII_IMAGE_PROTOCOL.DrawImage().
|
|
||||||
Same with EFI_HII_IMAGE_PROTOCOL.SetImage(),this protocol invokes EFI_HII_IMAGE_PROTOCOL.SetImage() implicitly.
|
The prototype of this extension function is the same with
|
||||||
|
EFI_HII_IMAGE_PROTOCOL.DrawImage(). This protocol invokes
|
||||||
|
EFI_HII_IMAGE_PROTOCOL.DrawImage() implicitly.
|
||||||
|
|
||||||
@param This A pointer to the EFI_HII_IMAGE_EX_PROTOCOL instance.
|
@param This A pointer to the EFI_HII_IMAGE_EX_PROTOCOL instance.
|
||||||
@param Flags Describes how the image is to be drawn.
|
@param Flags Describes how the image is to be drawn.
|
||||||
|
@ -125,19 +129,18 @@ EFI_STATUS
|
||||||
to the image, which is Width pixels wide and
|
to the image, which is Width pixels wide and
|
||||||
Height pixels high. The image will be drawn onto
|
Height pixels high. The image will be drawn onto
|
||||||
this image and EFI_HII_DRAW_FLAG_CLIP is implied.
|
this image and EFI_HII_DRAW_FLAG_CLIP is implied.
|
||||||
If this points to a NULL on entry, then a buffer
|
If this points to a NULL on entry, then a buffer
|
||||||
will be allocated to hold the generated image and
|
will be allocated to hold the generated image and
|
||||||
the pointer updated on exit. It is the caller's
|
the pointer updated on exit. It is the caller's
|
||||||
responsibility to free this buffer.
|
responsibility to free this buffer.
|
||||||
@param BltX Specifies the offset from the left and top edge of
|
@param BltX Specifies the offset from the left and top edge of
|
||||||
the output image of the first pixel in the image.
|
the output image of the first pixel in the image.
|
||||||
@param BltY Specifies the offset from the left and top edge of
|
@param BltY Specifies the offset from the left and top edge of
|
||||||
the output image of the first pixel in the image.
|
the output image of the first pixel in the image.
|
||||||
|
|
||||||
@retval EFI_SUCCESS The image was successfully drawn.
|
@retval EFI_SUCCESS The image was successfully drawn.
|
||||||
@retval EFI_OUT_OF_RESOURCES Unable to allocate an output buffer for Blt.
|
@retval EFI_OUT_OF_RESOURCES Unable to allocate an output buffer for Blt.
|
||||||
@retval EFI_INVALID_PARAMETER The Image or Blt was NULL.
|
@retval EFI_INVALID_PARAMETER The Image or Blt was NULL.
|
||||||
Any combination of Flags is invalid.
|
|
||||||
|
|
||||||
**/
|
**/
|
||||||
typedef
|
typedef
|
||||||
|
@ -153,17 +156,20 @@ EFI_STATUS
|
||||||
|
|
||||||
/**
|
/**
|
||||||
Renders an image to a bitmap or the screen containing the contents of the specified
|
Renders an image to a bitmap or the screen containing the contents of the specified
|
||||||
image. The prototype of this extension function is the same with E
|
image.
|
||||||
FI_HII_IMAGE_PROTOCOL.DrawImageId().
|
|
||||||
Same with EFI_HII_IMAGE_PROTOCOL.DrawImageId(),this protocol invokes
|
This function is similar to EFI_HII_IMAGE_PROTOCOL.DrawImageId(). The difference is that
|
||||||
EFI_HII_IMAGE_PROTOCOL.DrawImageId() implicitly.
|
this function will locate all EFI_HII_IMAGE_DECODER_PROTOCOL instances installed in the
|
||||||
|
system if the decoder of the certain image type is not supported by the
|
||||||
|
EFI_HII_IMAGE_EX_PROTOCOL. The function will attempt to decode the image to the
|
||||||
|
EFI_IMAGE_INPUT using the first EFI_HII_IMAGE_DECODER_PROTOCOL instance that
|
||||||
|
supports the requested image type.
|
||||||
|
|
||||||
@param This A pointer to the EFI_HII_IMAGE_EX_PROTOCOL instance.
|
@param This A pointer to the EFI_HII_IMAGE_EX_PROTOCOL instance.
|
||||||
@param Flags Describes how the image is to be drawn.
|
@param Flags Describes how the image is to be drawn.
|
||||||
@param PackageList The package list in the HII database to search for
|
@param PackageList The package list in the HII database to search for
|
||||||
the specified image.
|
the specified image.
|
||||||
@param ImageId The image's id, which is unique within
|
@param ImageId The image's id, which is unique within PackageList.
|
||||||
PackageList.
|
|
||||||
@param Blt If this points to a non-NULL on entry, this points
|
@param Blt If this points to a non-NULL on entry, this points
|
||||||
to the image, which is Width pixels wide and
|
to the image, which is Width pixels wide and
|
||||||
Height pixels high. The image will be drawn onto
|
Height pixels high. The image will be drawn onto
|
||||||
|
@ -179,7 +185,7 @@ EFI_HII_IMAGE_PROTOCOL.DrawImageId() implicitly.
|
||||||
|
|
||||||
@retval EFI_SUCCESS The image was successfully drawn.
|
@retval EFI_SUCCESS The image was successfully drawn.
|
||||||
@retval EFI_OUT_OF_RESOURCES Unable to allocate an output buffer for Blt.
|
@retval EFI_OUT_OF_RESOURCES Unable to allocate an output buffer for Blt.
|
||||||
@retval EFI_INVALID_PARAMETER The Blt was NULL.
|
@retval EFI_INVALID_PARAMETER The Blt was NULL or ImageId was 0.
|
||||||
@retval EFI_NOT_FOUND The image specified by ImageId is not in the database.
|
@retval EFI_NOT_FOUND The image specified by ImageId is not in the database.
|
||||||
The specified PackageList is not in the database.
|
The specified PackageList is not in the database.
|
||||||
|
|
||||||
|
@ -206,7 +212,7 @@ EFI_STATUS
|
||||||
@param This A pointer to the EFI_HII_IMAGE_EX_PROTOCOL instance.
|
@param This A pointer to the EFI_HII_IMAGE_EX_PROTOCOL instance.
|
||||||
@param PackageList Handle of the package list where this image will
|
@param PackageList Handle of the package list where this image will
|
||||||
be searched.
|
be searched.
|
||||||
@param ImageId The image's id,, which is unique within PackageList.
|
@param ImageId The image's id, which is unique within PackageList.
|
||||||
@param Image Points to the image.
|
@param Image Points to the image.
|
||||||
|
|
||||||
@retval EFI_SUCCESS The new image was returned successfully.
|
@retval EFI_SUCCESS The new image was returned successfully.
|
||||||
|
@ -214,7 +220,7 @@ EFI_STATUS
|
||||||
database. The specified PackageList is not in the database.
|
database. The specified PackageList is not in the database.
|
||||||
@retval EFI_BUFFER_TOO_SMALL The buffer specified by ImageSize is too small to
|
@retval EFI_BUFFER_TOO_SMALL The buffer specified by ImageSize is too small to
|
||||||
hold the image.
|
hold the image.
|
||||||
@retval EFI_INVALID_PARAMETER The Image or ImageSize was NULL.
|
@retval EFI_INVALID_PARAMETER The Image was NULL or the ImageId was 0.
|
||||||
@retval EFI_OUT_OF_RESOURCES The bitmap could not be retrieved because there
|
@retval EFI_OUT_OF_RESOURCES The bitmap could not be retrieved because there
|
||||||
was not enough memory.
|
was not enough memory.
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue