app/base/tile-manager.h moved a misplaced comment to the right place.

2008-08-05  Sven Neumann  <sven@gimp.org>

	* app/base/tile-manager.h
	* app/base/tile-pyramid.h: moved a misplaced comment to the 
right
	place.


svn path=/trunk/; revision=26382
This commit is contained in:
Sven Neumann 2008-08-05 15:10:47 +00:00 committed by Sven Neumann
parent d5e80803ef
commit ae07d6218c
3 changed files with 16 additions and 9 deletions

View file

@ -1,3 +1,9 @@
2008-08-05 Sven Neumann <sven@gimp.org>
* app/base/tile-manager.h
* app/base/tile-pyramid.h: moved a misplaced comment to the right
place.
2008-08-05 Michael Natterer <mitch@gimp.org>
* app/display/gimpdisplayshell-callbacks.c: move update_range

View file

@ -26,15 +26,7 @@
GType gimp_tile_manager_get_type (void) G_GNUC_CONST;
/* Creates a new tile manager with the specified width for the
* toplevel. The toplevel size is used to compute the number of
* levels and their size. Each level is 1/2 the width and height of
* the level above it.
*
* The toplevel is level 0. The smallest level in the hierarchy
* is "nlevels - 1". That level will be smaller than TILE_WIDTH x
* TILE_HEIGHT
*/
/* Creates a new tile manager with the specified size */
TileManager * tile_manager_new (gint width,
gint height,
gint bpp);

View file

@ -20,6 +20,15 @@
#define __TILE_PYRAMID_H__
/* Creates a new tile pyramid with the specified size for the
* toplevel. The toplevel size is used to compute the number of
* levels and their size. Each level is 1/2 the width and height of
* the level above it.
*
* The toplevel is level 0. The smallest level in the hierarchy
* is "nlevels - 1". That level will be smaller than TILE_WIDTH x
* TILE_HEIGHT
*/
TilePyramid * tile_pyramid_new (GimpImageType type,
gint width,
gint height);