diff options
author | Sam Lantinga <slouken@libsdl.org> | 2014-11-29 11:18:49 -0800 |
---|---|---|
committer | Sam Lantinga <slouken@libsdl.org> | 2014-11-29 11:18:49 -0800 |
commit | f8a0a64490691652e839fb4d5f052675265388bb (patch) | |
tree | 61e348a4bf6a2659975698dc4b6566b93bd00953 /include/SDL_render.h | |
parent | fc843814a332b2d1dd90d531e8c0320106b2c0ad (diff) |
Improved the pitch variable description
Diffstat (limited to 'include/SDL_render.h')
-rw-r--r-- | include/SDL_render.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/SDL_render.h b/include/SDL_render.h index 076363b767..e6084e9e77 100644 --- a/include/SDL_render.h +++ b/include/SDL_render.h @@ -371,7 +371,7 @@ extern DECLSPEC int SDLCALL SDL_GetTextureBlendMode(SDL_Texture * texture, * \param rect A pointer to the rectangle of pixels to update, or NULL to * update the entire texture. * \param pixels The raw pixel data. - * \param pitch The number of bytes between rows of pixel data. + * \param pitch The number of bytes in a row of pixel data, including padding between lines. * * \return 0 on success, or -1 if the texture is not valid. * |