I was browsing trough the buffer coding in svn and noticed following in
*gegl-buffer-load.c
<http://svn.gnome.org/viewvc/gegl/trunk/gegl/buffer/gegl-buffer-load.c?view=log>
*Is it normal that the width and height parameters are inversed?
GeglBuffer *
*gegl_buffer_load* (*const* gchar *path)
{
...
ret = g_object_new (GEGL_TYPE_BUFFER,
*"format"*, info->format,
*"tile-width"*, info->header.tile_width,
*"tile-height"*, info->header.tile_height,
*"height"*, info->header.width,
*"width"*, info->header.height,
*"path"*, path,
NULL);
...
}
_______________________________________________
Gimp-developer mailing list
[email protected]
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-developer