~ubuntu-branches/ubuntu/trusty/vips/trusty-proposed

« back to all changes in this revision

Viewing changes to libvips/include/vips/mask.h

  • Committer: Package Import Robot
  • Author(s): Jay Berkenbilt
  • Date: 2014-03-29 12:29:29 UTC
  • mfrom: (1.1.21) (30.1.16 sid)
  • Revision ID: package-import@ubuntu.com-20140329122929-fvxnaann32ex0gzk
Tags: 7.38.5-2
Enable dh-autoreconf. (Closes: #742872)

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
 *      - from proto.h
5
5
 */
6
6
 
 
7
/* All deprecated.
 
8
 */
 
9
 
7
10
/*
8
11
 
9
12
    This file is part of VIPS.
56
59
        char *filename;
57
60
} DOUBLEMASK;
58
61
 
59
 
#define VIPS_MASK( M, X, Y ) ((M)->coeff[(X) + (Y) * (M)->xsize])
 
62
#define IM_MASK( M, X, Y ) ((M)->coeff[(X) + (Y) * (M)->xsize])
60
63
 
61
64
INTMASK *im_create_imask( const char *filename, int xsize, int ysize );
62
65
INTMASK *im_create_imaskv( const char *filename, int xsize, int ysize, ... );