documentation.

2007-03-14  Sven Neumann  <sven@gimp.org>

	* app/base/pixel-surround.c (struct _PixelSurround): documentation.


svn path=/trunk/; revision=22117
This commit is contained in:
Sven Neumann 2007-03-14 09:13:12 +00:00 committed by Sven Neumann
parent 8d53504d82
commit 7688860072
2 changed files with 16 additions and 12 deletions

View File

@ -1,3 +1,7 @@
2007-03-14 Sven Neumann <sven@gimp.org>
* app/base/pixel-surround.c (struct _PixelSurround): documentation.
2007-03-14 Sven Neumann <sven@gimp.org>
* app/base/siox.c (siox_drb): moved calculations out of MIN() macro.

View File

@ -32,18 +32,18 @@
struct _PixelSurround
{
TileManager *mgr; /* tile manager to access tiles from */
gint bpp; /* bytes per pixel in tile manager */
gint w; /* width of pixel surround area */
gint h; /* height of pixel surround area */
Tile *tile; /* locked tile (may be NULL) */
gint tile_x; /* origin of locked tile */
gint tile_y; /* origin of locked tile */
gint tile_w; /* width of locked tile */
gint tile_h; /* height of locked tile */
gint rowstride;
guchar *bg;
guchar *buf;
TileManager *mgr; /* tile manager to access tiles from */
gint bpp; /* bytes per pixel in tile manager */
gint w; /* width of pixel surround area */
gint h; /* height of pixel surround area */
Tile *tile; /* locked tile (may be NULL) */
gint tile_x; /* origin of locked tile */
gint tile_y; /* origin of locked tile */
gint tile_w; /* width of locked tile */
gint tile_h; /* height of locked tile */
gint rowstride; /* rowstride of buffers */
guchar *bg; /* buffer filled with background color */
guchar *buf; /* buffer used for combining tile data */
};