~ubuntu-branches/debian/stretch/pngquant/stretch

« back to all changes in this revision

Viewing changes to lib/viter.h

  • Committer: Package Import Robot
  • Author(s): Andreas Tille
  • Date: 2014-10-07 09:19:38 UTC
  • mfrom: (1.1.3)
  • Revision ID: package-import@ubuntu.com-20141007091938-jmu20wvmi6hd2nb3
Tags: 2.3.0-1
* New upstream version
* cme fix dpkg-control
* d/copyright: Fix some DEP5 names
* d/rules: cope with hand-written configure script

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
#define VITER_CACHE_LINE_GAP ((64+sizeof(viter_state)-1)/sizeof(viter_state))
7
7
 
8
8
typedef struct {
9
 
    float a, r, g, b, total;
 
9
    double a, r, g, b, total;
10
10
} viter_state;
11
11
 
12
12
typedef void (*viter_callback)(hist_item *item, float diff);