Mercurial > sdl-ios-xcode
comparison include/SDL_video.h @ 2886:633ce79b7a5b
Minor corrections
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Sat, 20 Dec 2008 12:32:38 +0000 |
parents | 9dde605c7540 |
children | 133601e3b255 |
comparison
equal
deleted
inserted
replaced
2885:ca6499468250 | 2886:633ce79b7a5b |
---|---|
1169 Uint8 * a); | 1169 Uint8 * a); |
1170 | 1170 |
1171 /** | 1171 /** |
1172 * \fn int SDL_SetRenderDrawBlendMode(int blendMode) | 1172 * \fn int SDL_SetRenderDrawBlendMode(int blendMode) |
1173 * | 1173 * |
1174 * \brief Set the blend mode used for drawing operations | 1174 * \brief Set the blend mode used for drawing operations (Fill and Line). |
1175 * | 1175 * |
1176 * \param blendMode SDL_BlendMode to use for blending | 1176 * \param blendMode SDL_BlendMode to use for blending |
1177 * | 1177 * |
1178 * \return 0 on success, or -1 if there is no rendering context current | 1178 * \return 0 on success, or -1 if there is no rendering context current |
1179 * | 1179 * |
1195 * \sa SDL_SetRenderDrawBlendMode() | 1195 * \sa SDL_SetRenderDrawBlendMode() |
1196 */ | 1196 */ |
1197 extern DECLSPEC int SDLCALL SDL_GetRenderDrawBlendMode(int *blendMode); | 1197 extern DECLSPEC int SDLCALL SDL_GetRenderDrawBlendMode(int *blendMode); |
1198 | 1198 |
1199 /** | 1199 /** |
1200 * \fn void SDL_RenderLine(int x1, int y1, int x2, int y2) | 1200 * \fn int SDL_RenderLine(int x1, int y1, int x2, int y2) |
1201 * | 1201 * |
1202 * \brief Draw a line on the current rendering target. | 1202 * \brief Draw a line on the current rendering target. |
1203 * | 1203 * |
1204 * \param x1 The x coordinate of the start point | 1204 * \param x1 The x coordinate of the start point |
1205 * \param y1 The y coordinate of the start point | 1205 * \param y1 The y coordinate of the start point |