Skip to content

Commit

Permalink
Bug 734652 - Cage Transform doesn't use original high resolution...
Browse files Browse the repository at this point in the history
of image after committing the transform

Fix swapped sampler_type and level arguments in call to
gegl_buffer_sampler_new_at_level() in map-absolute.c.
  • Loading branch information
mitchfoo committed Nov 28, 2014
1 parent 960daff commit f01387c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion operations/common/map-absolute.c
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,8 @@ process (GeglOperation *operation,
format_io = babl_format ("RGBA float");
format_coords = babl_format_n (babl_type ("float"), 2);

sampler = gegl_buffer_sampler_new_at_level (input, format_io, level, o->sampler_type);
sampler = gegl_buffer_sampler_new_at_level (input, format_io, o->sampler_type,
level);

if (aux != NULL)
{
Expand Down

0 comments on commit f01387c

Please sign in to comment.