From 1e4acca8515ce1b606cffc4064fa16f7cb948740 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Sat, 1 Dec 2018 12:17:34 -0500 Subject: [PATCH] Added some detail to a Doxygen comment (thanks, Sylvain!). --- include/SDL_blendmode.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/include/SDL_blendmode.h b/include/SDL_blendmode.h index 36a5ea76f0c52..cd082abb9a1b0 100644 --- a/include/SDL_blendmode.h +++ b/include/SDL_blendmode.h @@ -90,12 +90,12 @@ typedef enum /** * \brief Create a custom blend mode, which may or may not be supported by a given renderer * - * \param srcColorFactor - * \param dstColorFactor - * \param colorOperation - * \param srcAlphaFactor - * \param dstAlphaFactor - * \param alphaOperation + * \param srcColorFactor source color factor + * \param dstColorFactor destination color factor + * \param colorOperation color operation + * \param srcAlphaFactor source alpha factor + * \param dstAlphaFactor destination alpha factor + * \param alphaOperation alpha operation * * The result of the blend mode operation will be: * dstRGB = dstRGB * dstColorFactor colorOperation srcRGB * srcColorFactor