Fixed bug 1843 - SDL_RenderClear prototype doxygen missing

Martin Gerhardy

SDL_RenderClear prototype misses documentation for the return value
This commit is contained in:
Philipp Wiesemann 2013-05-12 13:25:34 +02:00
parent d7cb8fc61f
commit 98b4492c37

View file

@ -604,6 +604,8 @@ extern DECLSPEC int SDLCALL SDL_GetRenderDrawBlendMode(SDL_Renderer * renderer,
* \brief Clear the current rendering target with the drawing color * \brief Clear the current rendering target with the drawing color
* *
* This function clears the entire rendering target, ignoring the viewport. * This function clears the entire rendering target, ignoring the viewport.
*
* \return 0 on success, or -1 on error
*/ */
extern DECLSPEC int SDLCALL SDL_RenderClear(SDL_Renderer * renderer); extern DECLSPEC int SDLCALL SDL_RenderClear(SDL_Renderer * renderer);