amd/vpelib: fix doxgen warnings

What does the change do after sanization if any.
Delete this section if not applicable.

Acked-by: ChuanYu Tseng <ChuanYu.Tseng@amd.com>
Signed-off-by: Roy Chan <roy.chan@amd.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/35012>
This commit is contained in:
Chan, Roy 2025-04-30 19:19:39 -04:00 committed by ChuanYu Tseng (Max)
parent 80af9d4756
commit ffa5aadd2f
2 changed files with 8 additions and 2 deletions

View file

@ -841,12 +841,18 @@ struct vpe_stream {
} flags; /**< Data flags */
};
/** @enum predication_polarity
* @brief Predication polarity
*/
enum predication_polarity {
PREDICATION_OP_EQUAL_ZERO = 0, /**< Enables predication if all 64-bits are zero. */
PREDICATION_OP_NOT_EQUAL_ZERO =
1, /**< Enables predication if at least one of the 64-bits are not zero.*/
};
/** @struct vpe_predication_info
* @brief Predication info
*/
struct vpe_predication_info {
bool enable; /**< Enable predication */
uint64_t gpu_va; /**< GPU start address of the buffer */

View file

@ -141,7 +141,7 @@ void vpe_get_optimal_num_of_taps(struct vpe *vpe, struct vpe_scaling_info *scali
* Build the command descriptor for timestamp operation
* gets global gpu timestamp and writes it to the given gpu address
*
* @param[in,out] bufs [in] memory allocated for the command buffer.
* @param[in,out] buf [in] memory allocated for the command buffer.
* If size is 0, it reports the required size for this checked
* operation. [out] the next write address and the filled sizes.
* @param[in] dst_address address where the data is written to
@ -154,7 +154,7 @@ enum vpe_status vpe_build_timestamp(struct vpe_buf *buf, uint64_t dst_address);
* Build the command descriptor for resolve operation
* copies the data from the read address to the write address to the number of dwords specified.
*
* @param[in,out] bufs [in] memory allocated for the command buffer.
* @param[in,out] buf [in] memory allocated for the command buffer.
* If size is 0, it reports the required size for this checked
* operation. [out] the next write address and the filled sizes.
* @param[in] read_addr GPU virtual address where the data is read from