Mercurial > sdl-ios-xcode
comparison include/SDL_video.h @ 4878:e1f1b209c196
Documentation consistency
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Sun, 29 Aug 2010 22:28:38 -0700 |
parents | f191762fb5c6 |
children | 64a1db785f2c |
comparison
equal
deleted
inserted
replaced
4877:f191762fb5c6 | 4878:e1f1b209c196 |
---|---|
1196 */ | 1196 */ |
1197 extern DECLSPEC int SDLCALL SDL_RenderDrawLines(const SDL_Point * points, | 1197 extern DECLSPEC int SDLCALL SDL_RenderDrawLines(const SDL_Point * points, |
1198 int count); | 1198 int count); |
1199 | 1199 |
1200 /** | 1200 /** |
1201 * \brief Draw a rectangle on the current rendering target with the drawing color. | 1201 * \brief Draw a rectangle on the current rendering target. |
1202 * | 1202 * |
1203 * \param rect A pointer to the destination rectangle, or NULL to outline the entire rendering target. | 1203 * \param rect A pointer to the destination rectangle, or NULL to outline the entire rendering target. |
1204 * | 1204 * |
1205 * \return 0 on success, or -1 if there is no rendering context current. | 1205 * \return 0 on success, or -1 if there is no rendering context current. |
1206 */ | 1206 */ |
1207 extern DECLSPEC int SDLCALL SDL_RenderDrawRect(const SDL_Rect * rect); | 1207 extern DECLSPEC int SDLCALL SDL_RenderDrawRect(const SDL_Rect * rect); |
1208 | 1208 |
1209 /** | 1209 /** |
1210 * \brief Draw some number of rectangles in the current rendering target with the drawing color. | 1210 * \brief Draw some number of rectangles on the current rendering target. |
1211 * | 1211 * |
1212 * \param rects A pointer to an array of destination rectangles. | 1212 * \param rects A pointer to an array of destination rectangles. |
1213 * \param count The number of rectangles. | 1213 * \param count The number of rectangles. |
1214 * | 1214 * |
1215 * \return 0 on success, or -1 if there is no rendering context current. | 1215 * \return 0 on success, or -1 if there is no rendering context current. |