RSS/Atom feed Twitter
Site is read-only, email is disabled

Split Result?

This discussion is connected to the gegl-developer-list.gnome.org mailing list which is provided by the GIMP developers and not related to gimpusers.com.

This is a read-only list on gimpusers.com so this discussion thread is read-only, too.

4 of 4 messages available
Toggle history

Please log in to manage your subscriptions.

Split Result? Ferran Basora 30 Jan 20:31
Split Result? Kevin Cozens 30 Jan 22:14
Split Result? Ferran Basora 30 Jan 22:46
Split Result? Øyvind Kolås 30 Jan 22:55
Ferran Basora
2008-01-30 20:31:36 UTC (almost 17 years ago)

Split Result?

Hi,

I am creating a gegl operation but my result is being splitted in two parts.

Anyone knows the reason?

Thanks for your answers.

Best regards

Kevin Cozens
2008-01-30 22:14:54 UTC (almost 17 years ago)

Split Result?

Ferran Basora wrote:

I am creating a gegl operation but my result is being splitted in two parts.

You will need to provide more information that that one line before anyone is likely to understand the problem you are having.

Ferran Basora
2008-01-30 22:46:09 UTC (almost 17 years ago)

Split Result?

Sorry,

the operation that I am creating renders a simple gradient from 0 to image width but in the middle of the image ends the gradient and starts again to the end of the image. I don't understand the reason.

Thanks

On Jan 30, 2008 10:14 PM, Kevin Cozens wrote:

Ferran Basora wrote:

I am creating a gegl operation but my result is being splitted in two

parts.

You will need to provide more information that that one line before anyone is
likely to understand the problem you are having.

-- Cheers!

Kevin.

http://www.ve3syb.ca/ |"What are we going to do today, Borg?" Owner of Elecraft K2 #2172 |"Same thing we always do, Pinkutus: | Try to assimilate the world!" #include | -Pinkutus & the Borg

Øyvind Kolås
2008-01-30 22:55:56 UTC (almost 17 years ago)

Split Result?

On Jan 30, 2008 9:46 PM, Ferran Basora wrote:

the operation that I am creating renders a simple gradient from 0 to image width but in the middle of the image ends the gradient and starts again to the end of the image. I don't understand the reason.

You probably want to look at either the mandelbrot or the checkerboard operations and how they deal with coordinates. Be aware that the operaiton will be asked to render a subrectangle (with an x,y offset as well) and not it's entire output in one pass. This applies to all operations and is due to GEGL
supporting processing and generation of images larger than system RAM as well as that this design constraint will enable a future version of GEGL to be
performing paralell processing.

The API for writing operations is still settling, I hope you are looking at the latest version in SVN and not the last released version, since there has been considerable amounts of changes recently. (The next release of GEGL will be the first release where header files for writing custom operation plug-ins will be installed.)

/Øyvind K.