~ubuntu-branches/ubuntu/oneiric/gimp/oneiric-updates

« back to all changes in this revision

Viewing changes to plug-ins/common/contrast-retinex.c

  • Committer: Package Import Robot
  • Author(s): Sebastien Bacher
  • Date: 2010-11-18 17:25:42 UTC
  • mfrom: (1.1.24) (0.4.7 sid)
  • Revision ID: package-import@ubuntu.com-20101118172542-dq82nx82sjgv0o0u
Tags: 2.6.11-1ubuntu1
* Resync on Debian
* debian/patches/02_help-message.patch,
  debian/patches/03_gimp.desktop.in.in.patch:
   - updated some strings for ubuntu
* debian/control: updated description
* debian/rules:
    - updated translation templates

Show diffs side-by-side

added added

removed removed

Lines of Context:
599
599
  w2[size+3]= w1[size+3];
600
600
  for (i = size, n = i; i >= 0; i--, n--)
601
601
    {
602
 
      w2[n]= out[i * rowstride] = (gfloat)(c->B*w1[n] +
 
602
      w2[n]= out[i * rowstride] = (gfloat)(c->B*w1[n+3] +
603
603
                                           ((c->b[1]*w2[n+1] +
604
604
                                             c->b[2]*w2[n+2] +
605
605
                                             c->b[3]*w2[n+3] ) / c->b[0]));