@img/sharp-libvips-dev 0.0.1 → 0.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (109) hide show
  1. package/README.md +3 -3
  2. package/cplusplus/VConnection.cpp +54 -54
  3. package/cplusplus/VError.cpp +20 -18
  4. package/cplusplus/VImage.cpp +636 -589
  5. package/cplusplus/VInterpolate.cpp +22 -22
  6. package/cplusplus/VRegion.cpp +4 -4
  7. package/cplusplus/vips-operators.cpp +2326 -2301
  8. package/include/aom/aom_codec.h +10 -6
  9. package/include/aom/aom_decoder.h +1 -1
  10. package/include/aom/aom_encoder.h +9 -2
  11. package/include/aom/aomcx.h +72 -3
  12. package/include/cairo/cairo-ft.h +1 -1
  13. package/include/cairo/cairo-gobject.h +8 -0
  14. package/include/cairo/cairo-svg.h +3 -3
  15. package/include/cairo/cairo-version.h +2 -2
  16. package/include/cairo/cairo.h +91 -24
  17. package/include/glib-2.0/glib/gmacros.h +1 -1
  18. package/include/glib-2.0/glib/gtestutils.h +1 -1
  19. package/include/glib-2.0/gobject/gtype.h +7 -7
  20. package/include/harfbuzz/hb-version.h +2 -2
  21. package/include/hwy/aligned_allocator.h +211 -0
  22. package/include/hwy/base.h +1517 -0
  23. package/include/hwy/cache_control.h +108 -0
  24. package/include/hwy/detect_compiler_arch.h +281 -0
  25. package/include/hwy/detect_targets.h +644 -0
  26. package/include/hwy/foreach_target.h +340 -0
  27. package/include/hwy/highway.h +435 -0
  28. package/include/hwy/highway_export.h +74 -0
  29. package/include/hwy/nanobenchmark.h +171 -0
  30. package/include/hwy/ops/arm_neon-inl.h +8913 -0
  31. package/include/hwy/ops/arm_sve-inl.h +5105 -0
  32. package/include/hwy/ops/emu128-inl.h +2811 -0
  33. package/include/hwy/ops/generic_ops-inl.h +4745 -0
  34. package/include/hwy/ops/ppc_vsx-inl.h +5716 -0
  35. package/include/hwy/ops/rvv-inl.h +5070 -0
  36. package/include/hwy/ops/scalar-inl.h +1995 -0
  37. package/include/hwy/ops/set_macros-inl.h +578 -0
  38. package/include/hwy/ops/shared-inl.h +539 -0
  39. package/include/hwy/ops/tuple-inl.h +125 -0
  40. package/include/hwy/ops/wasm_128-inl.h +5917 -0
  41. package/include/hwy/ops/x86_128-inl.h +11173 -0
  42. package/include/hwy/ops/x86_256-inl.h +7529 -0
  43. package/include/hwy/ops/x86_512-inl.h +6849 -0
  44. package/include/hwy/per_target.h +44 -0
  45. package/include/hwy/print-inl.h +62 -0
  46. package/include/hwy/print.h +75 -0
  47. package/include/hwy/robust_statistics.h +148 -0
  48. package/include/hwy/targets.h +338 -0
  49. package/include/hwy/timer-inl.h +200 -0
  50. package/include/hwy/timer.h +55 -0
  51. package/include/jconfig.h +2 -2
  52. package/include/jpeglib.h +3 -2
  53. package/include/libheif/heif.h +461 -384
  54. package/include/libheif/heif_cxx.h +4 -1
  55. package/include/libheif/heif_plugin.h +1 -1
  56. package/include/libheif/heif_properties.h +138 -0
  57. package/include/libheif/heif_regions.h +866 -0
  58. package/include/libheif/heif_version.h +3 -3
  59. package/include/libpng16/pnglibconf.h +1 -1
  60. package/include/pnglibconf.h +1 -1
  61. package/include/vips/VConnection8.h +43 -49
  62. package/include/vips/VError8.h +27 -24
  63. package/include/vips/VImage8.h +4861 -4597
  64. package/include/vips/VInterpolate8.h +24 -27
  65. package/include/vips/VRegion8.h +32 -33
  66. package/include/vips/arithmetic.h +169 -169
  67. package/include/vips/basic.h +33 -33
  68. package/include/vips/buf.h +56 -54
  69. package/include/vips/colour.h +95 -95
  70. package/include/vips/connection.h +190 -193
  71. package/include/vips/conversion.h +91 -91
  72. package/include/vips/convolution.h +36 -30
  73. package/include/vips/create.h +63 -63
  74. package/include/vips/dbuf.h +35 -37
  75. package/include/vips/debug.h +65 -33
  76. package/include/vips/draw.h +41 -41
  77. package/include/vips/enumtypes.h +54 -51
  78. package/include/vips/error.h +63 -63
  79. package/include/vips/foreign.h +263 -223
  80. package/include/vips/format.h +48 -48
  81. package/include/vips/freqfilt.h +22 -22
  82. package/include/vips/gate.h +55 -47
  83. package/include/vips/generate.h +34 -34
  84. package/include/vips/header.h +111 -101
  85. package/include/vips/histogram.h +28 -28
  86. package/include/vips/image.h +213 -213
  87. package/include/vips/interpolate.h +40 -41
  88. package/include/vips/memory.h +61 -52
  89. package/include/vips/morphology.h +24 -24
  90. package/include/vips/mosaicing.h +32 -33
  91. package/include/vips/object.h +371 -357
  92. package/include/vips/operation.h +68 -67
  93. package/include/vips/private.h +76 -76
  94. package/include/vips/rect.h +26 -26
  95. package/include/vips/region.h +92 -92
  96. package/include/vips/resample.h +38 -38
  97. package/include/vips/sbuf.h +53 -54
  98. package/include/vips/semaphore.h +24 -24
  99. package/include/vips/thread.h +30 -27
  100. package/include/vips/threadpool.h +48 -49
  101. package/include/vips/transform.h +39 -39
  102. package/include/vips/type.h +90 -85
  103. package/include/vips/util.h +274 -229
  104. package/include/vips/vector.h +24 -144
  105. package/include/vips/version.h +9 -9
  106. package/include/vips/vips.h +41 -40
  107. package/include/zlib.h +23 -19
  108. package/package.json +1 -1
  109. package/versions.json +9 -9
@@ -3,28 +3,28 @@
3
3
 
4
4
  /*
5
5
 
6
- Copyright (C) 1991-2005 The National Gallery
6
+ Copyright (C) 1991-2005 The National Gallery
7
7
 
8
- This library is free software; you can redistribute it and/or
9
- modify it under the terms of the GNU Lesser General Public
10
- License as published by the Free Software Foundation; either
11
- version 2.1 of the License, or (at your option) any later version.
8
+ This library is free software; you can redistribute it and/or
9
+ modify it under the terms of the GNU Lesser General Public
10
+ License as published by the Free Software Foundation; either
11
+ version 2.1 of the License, or (at your option) any later version.
12
12
 
13
- This library is distributed in the hope that it will be useful,
14
- but WITHOUT ANY WARRANTY; without even the implied warranty of
15
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16
- Lesser General Public License for more details.
13
+ This library is distributed in the hope that it will be useful,
14
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
15
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16
+ Lesser General Public License for more details.
17
17
 
18
- You should have received a copy of the GNU Lesser General Public
19
- License along with this library; if not, write to the Free Software
20
- Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
21
- 02110-1301 USA
18
+ You should have received a copy of the GNU Lesser General Public
19
+ License along with this library; if not, write to the Free Software
20
+ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
21
+ 02110-1301 USA
22
22
 
23
23
  */
24
24
 
25
25
  /*
26
26
 
27
- These files are distributed with VIPS - http://www.vips.ecs.soton.ac.uk
27
+ These files are distributed with VIPS - http://www.vips.ecs.soton.ac.uk
28
28
 
29
29
  */
30
30
 
@@ -36,104 +36,104 @@ extern "C" {
36
36
  #endif /*__cplusplus*/
37
37
 
38
38
  VIPS_API
39
- const char *vips_error_buffer( void );
39
+ const char *vips_error_buffer(void);
40
40
  VIPS_API
41
- char *vips_error_buffer_copy( void );
41
+ char *vips_error_buffer_copy(void);
42
42
  VIPS_API
43
- void vips_error_clear( void );
43
+ void vips_error_clear(void);
44
44
 
45
45
  VIPS_API
46
- void vips_error_freeze( void );
46
+ void vips_error_freeze(void);
47
47
  VIPS_API
48
- void vips_error_thaw( void );
48
+ void vips_error_thaw(void);
49
49
 
50
50
  VIPS_API
51
- void vips_error( const char *domain, const char *fmt, ... )
52
- G_GNUC_PRINTF( 2, 3 );
51
+ void vips_error(const char *domain, const char *fmt, ...)
52
+ G_GNUC_PRINTF(2, 3);
53
53
  VIPS_API
54
- void vips_verror( const char *domain, const char *fmt, va_list ap );
54
+ void vips_verror(const char *domain, const char *fmt, va_list ap);
55
55
  VIPS_API
56
- void vips_error_system( int err, const char *domain, const char *fmt, ... )
57
- G_GNUC_PRINTF( 3, 4 );
56
+ void vips_error_system(int err, const char *domain, const char *fmt, ...)
57
+ G_GNUC_PRINTF(3, 4);
58
58
  VIPS_API
59
- void vips_verror_system( int err, const char *domain,
60
- const char *fmt, va_list ap );
59
+ void vips_verror_system(int err, const char *domain,
60
+ const char *fmt, va_list ap);
61
61
  VIPS_API
62
- void vips_error_g( GError **error );
62
+ void vips_error_g(GError **error);
63
63
  VIPS_API
64
- void vips_g_error( GError **error );
64
+ void vips_g_error(GError **error);
65
65
 
66
66
  VIPS_API
67
- void vips_error_exit( const char *fmt, ... )
68
- G_GNUC_NORETURN G_GNUC_PRINTF( 1, 2 );
67
+ void vips_error_exit(const char *fmt, ...)
68
+ G_GNUC_NORETURN G_GNUC_PRINTF(1, 2);
69
69
 
70
70
  VIPS_API
71
- int vips_check_uncoded( const char *domain, VipsImage *im );
71
+ int vips_check_uncoded(const char *domain, VipsImage *im);
72
72
  VIPS_API
73
- int vips_check_coding( const char *domain, VipsImage *im, VipsCoding coding );
73
+ int vips_check_coding(const char *domain, VipsImage *im, VipsCoding coding);
74
74
  VIPS_API
75
- int vips_check_coding_known( const char *domain, VipsImage *im );
75
+ int vips_check_coding_known(const char *domain, VipsImage *im);
76
76
  VIPS_API
77
- int vips_check_coding_noneorlabq( const char *domain, VipsImage *im );
77
+ int vips_check_coding_noneorlabq(const char *domain, VipsImage *im);
78
78
  VIPS_API
79
- int vips_check_coding_same( const char *domain, VipsImage *im1, VipsImage *im2 );
79
+ int vips_check_coding_same(const char *domain, VipsImage *im1, VipsImage *im2);
80
80
  VIPS_API
81
- int vips_check_mono( const char *domain, VipsImage *im );
81
+ int vips_check_mono(const char *domain, VipsImage *im);
82
82
  VIPS_API
83
- int vips_check_bands( const char *domain, VipsImage *im, int bands );
83
+ int vips_check_bands(const char *domain, VipsImage *im, int bands);
84
84
  VIPS_API
85
- int vips_check_bands_1or3( const char *domain, VipsImage *im );
85
+ int vips_check_bands_1or3(const char *domain, VipsImage *im);
86
86
  VIPS_API
87
- int vips_check_bands_atleast( const char *domain, VipsImage *im, int bands );
87
+ int vips_check_bands_atleast(const char *domain, VipsImage *im, int bands);
88
88
  VIPS_API
89
- int vips_check_bands_1orn( const char *domain, VipsImage *im1, VipsImage *im2 );
89
+ int vips_check_bands_1orn(const char *domain, VipsImage *im1, VipsImage *im2);
90
90
  VIPS_API
91
- int vips_check_bands_1orn_unary( const char *domain, VipsImage *im, int n );
91
+ int vips_check_bands_1orn_unary(const char *domain, VipsImage *im, int n);
92
92
  VIPS_API
93
- int vips_check_bands_same( const char *domain, VipsImage *im1, VipsImage *im2 );
93
+ int vips_check_bands_same(const char *domain, VipsImage *im1, VipsImage *im2);
94
94
  VIPS_API
95
- int vips_check_bandno( const char *domain, VipsImage *im, int bandno );
95
+ int vips_check_bandno(const char *domain, VipsImage *im, int bandno);
96
96
 
97
97
  VIPS_API
98
- int vips_check_int( const char *domain, VipsImage *im );
98
+ int vips_check_int(const char *domain, VipsImage *im);
99
99
  VIPS_API
100
- int vips_check_uint( const char *domain, VipsImage *im );
100
+ int vips_check_uint(const char *domain, VipsImage *im);
101
101
  VIPS_API
102
- int vips_check_uintorf( const char *domain, VipsImage *im );
102
+ int vips_check_uintorf(const char *domain, VipsImage *im);
103
103
  VIPS_API
104
- int vips_check_noncomplex( const char *domain, VipsImage *im );
104
+ int vips_check_noncomplex(const char *domain, VipsImage *im);
105
105
  VIPS_API
106
- int vips_check_complex( const char *domain, VipsImage *im );
106
+ int vips_check_complex(const char *domain, VipsImage *im);
107
107
  VIPS_API
108
- int vips_check_twocomponents( const char *domain, VipsImage *im );
108
+ int vips_check_twocomponents(const char *domain, VipsImage *im);
109
109
  VIPS_API
110
- int vips_check_format( const char *domain, VipsImage *im, VipsBandFormat fmt );
110
+ int vips_check_format(const char *domain, VipsImage *im, VipsBandFormat fmt);
111
111
  VIPS_API
112
- int vips_check_u8or16( const char *domain, VipsImage *im );
112
+ int vips_check_u8or16(const char *domain, VipsImage *im);
113
113
  VIPS_API
114
- int vips_check_8or16( const char *domain, VipsImage *im );
114
+ int vips_check_8or16(const char *domain, VipsImage *im);
115
115
  VIPS_API
116
- int vips_check_u8or16orf( const char *domain, VipsImage *im );
116
+ int vips_check_u8or16orf(const char *domain, VipsImage *im);
117
117
  VIPS_API
118
- int vips_check_format_same( const char *domain, VipsImage *im1, VipsImage *im2 );
118
+ int vips_check_format_same(const char *domain, VipsImage *im1, VipsImage *im2);
119
119
  VIPS_API
120
- int vips_check_size_same( const char *domain, VipsImage *im1, VipsImage *im2 );
120
+ int vips_check_size_same(const char *domain, VipsImage *im1, VipsImage *im2);
121
121
  VIPS_API
122
- int vips_check_oddsquare( const char *domain, VipsImage *im );
122
+ int vips_check_oddsquare(const char *domain, VipsImage *im);
123
123
  VIPS_API
124
- int vips_check_vector_length( const char *domain, int n, int len );
124
+ int vips_check_vector_length(const char *domain, int n, int len);
125
125
  VIPS_API
126
- int vips_check_vector( const char *domain, int n, VipsImage *im );
126
+ int vips_check_vector(const char *domain, int n, VipsImage *im);
127
127
  VIPS_API
128
- int vips_check_hist( const char *domain, VipsImage *im );
128
+ int vips_check_hist(const char *domain, VipsImage *im);
129
129
  VIPS_API
130
- int vips_check_matrix( const char *domain, VipsImage *im, VipsImage **out );
130
+ int vips_check_matrix(const char *domain, VipsImage *im, VipsImage **out);
131
131
  VIPS_API
132
- int vips_check_separable( const char *domain, VipsImage *im );
132
+ int vips_check_separable(const char *domain, VipsImage *im);
133
133
 
134
134
  VIPS_API
135
- int vips_check_precision_intfloat( const char *domain,
136
- VipsPrecision precision );
135
+ int vips_check_precision_intfloat(const char *domain,
136
+ VipsPrecision precision);
137
137
 
138
138
  #ifdef __cplusplus
139
139
  }