@img/sharp-libvips-dev 1.2.1 → 1.2.2-rc.2

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 (115) hide show
  1. package/include/aom/aom_decoder.h +1 -1
  2. package/include/aom/aom_encoder.h +2 -0
  3. package/include/aom/aomcx.h +106 -25
  4. package/include/ffi.h +3 -3
  5. package/include/freetype2/freetype/config/ftconfig.h +1 -1
  6. package/include/freetype2/freetype/config/ftheader.h +1 -1
  7. package/include/freetype2/freetype/config/ftoption.h +37 -12
  8. package/include/freetype2/freetype/config/ftstdlib.h +1 -1
  9. package/include/freetype2/freetype/config/integer-types.h +29 -2
  10. package/include/freetype2/freetype/config/mac-support.h +1 -1
  11. package/include/freetype2/freetype/config/public-macros.h +3 -3
  12. package/include/freetype2/freetype/freetype.h +51 -47
  13. package/include/freetype2/freetype/ftadvanc.h +1 -1
  14. package/include/freetype2/freetype/ftbbox.h +1 -1
  15. package/include/freetype2/freetype/ftbdf.h +1 -1
  16. package/include/freetype2/freetype/ftbitmap.h +1 -1
  17. package/include/freetype2/freetype/ftbzip2.h +1 -1
  18. package/include/freetype2/freetype/ftcache.h +1 -1
  19. package/include/freetype2/freetype/ftcid.h +1 -1
  20. package/include/freetype2/freetype/ftcolor.h +13 -4
  21. package/include/freetype2/freetype/ftdriver.h +3 -3
  22. package/include/freetype2/freetype/fterrdef.h +1 -1
  23. package/include/freetype2/freetype/fterrors.h +1 -1
  24. package/include/freetype2/freetype/ftfntfmt.h +1 -1
  25. package/include/freetype2/freetype/ftgasp.h +1 -1
  26. package/include/freetype2/freetype/ftglyph.h +1 -1
  27. package/include/freetype2/freetype/ftgxval.h +1 -1
  28. package/include/freetype2/freetype/ftgzip.h +1 -1
  29. package/include/freetype2/freetype/ftimage.h +6 -2
  30. package/include/freetype2/freetype/ftincrem.h +1 -1
  31. package/include/freetype2/freetype/ftlcdfil.h +1 -1
  32. package/include/freetype2/freetype/ftlist.h +1 -1
  33. package/include/freetype2/freetype/ftlogging.h +184 -0
  34. package/include/freetype2/freetype/ftlzw.h +1 -1
  35. package/include/freetype2/freetype/ftmac.h +1 -1
  36. package/include/freetype2/freetype/ftmm.h +159 -103
  37. package/include/freetype2/freetype/ftmodapi.h +1 -1
  38. package/include/freetype2/freetype/ftmoderr.h +1 -1
  39. package/include/freetype2/freetype/ftotval.h +1 -1
  40. package/include/freetype2/freetype/ftoutln.h +1 -1
  41. package/include/freetype2/freetype/ftparams.h +1 -1
  42. package/include/freetype2/freetype/ftpfr.h +1 -1
  43. package/include/freetype2/freetype/ftrender.h +1 -1
  44. package/include/freetype2/freetype/ftsizes.h +1 -1
  45. package/include/freetype2/freetype/ftsnames.h +1 -1
  46. package/include/freetype2/freetype/ftstroke.h +1 -1
  47. package/include/freetype2/freetype/ftsynth.h +1 -1
  48. package/include/freetype2/freetype/ftsystem.h +1 -1
  49. package/include/freetype2/freetype/fttrigon.h +1 -1
  50. package/include/freetype2/freetype/fttypes.h +1 -1
  51. package/include/freetype2/freetype/ftwinfnt.h +2 -3
  52. package/include/freetype2/freetype/otsvg.h +1 -1
  53. package/include/freetype2/freetype/t1tables.h +1 -1
  54. package/include/freetype2/freetype/ttnameid.h +129 -129
  55. package/include/freetype2/freetype/tttables.h +8 -5
  56. package/include/freetype2/freetype/tttags.h +1 -1
  57. package/include/freetype2/ft2build.h +1 -1
  58. package/include/glib-2.0/gio/gdbuserror.h +9 -8
  59. package/include/glib-2.0/gio/ginetaddress.h +12 -0
  60. package/include/glib-2.0/gio/gioenums.h +9 -2
  61. package/include/glib-2.0/glib/gstring.h +2 -2
  62. package/include/glib-2.0/glib/gunicode.h +1 -1
  63. package/include/glib-2.0/gobject/glib-types.h +1 -1
  64. package/include/glib-2.0/gobject/gparam.h +1 -1
  65. package/include/glib-2.0/gobject/gvalue.h +78 -35
  66. package/include/harfbuzz/hb-script-list.h +12 -0
  67. package/include/harfbuzz/hb-version.h +3 -3
  68. package/include/hwy/abort.h +2 -19
  69. package/include/hwy/aligned_allocator.h +11 -7
  70. package/include/hwy/auto_tune.h +504 -0
  71. package/include/hwy/base.h +425 -104
  72. package/include/hwy/cache_control.h +16 -0
  73. package/include/hwy/detect_compiler_arch.h +32 -1
  74. package/include/hwy/detect_targets.h +251 -67
  75. package/include/hwy/foreach_target.h +35 -0
  76. package/include/hwy/highway.h +185 -76
  77. package/include/hwy/nanobenchmark.h +1 -19
  78. package/include/hwy/ops/arm_neon-inl.h +969 -458
  79. package/include/hwy/ops/arm_sve-inl.h +1137 -359
  80. package/include/hwy/ops/emu128-inl.h +97 -11
  81. package/include/hwy/ops/generic_ops-inl.h +1222 -34
  82. package/include/hwy/ops/loongarch_lasx-inl.h +4664 -0
  83. package/include/hwy/ops/loongarch_lsx-inl.h +5933 -0
  84. package/include/hwy/ops/ppc_vsx-inl.h +306 -126
  85. package/include/hwy/ops/rvv-inl.h +546 -51
  86. package/include/hwy/ops/scalar-inl.h +77 -22
  87. package/include/hwy/ops/set_macros-inl.h +138 -17
  88. package/include/hwy/ops/shared-inl.h +50 -10
  89. package/include/hwy/ops/wasm_128-inl.h +137 -92
  90. package/include/hwy/ops/x86_128-inl.h +773 -214
  91. package/include/hwy/ops/x86_256-inl.h +712 -255
  92. package/include/hwy/ops/x86_512-inl.h +429 -753
  93. package/include/hwy/ops/x86_avx3-inl.h +501 -0
  94. package/include/hwy/per_target.h +2 -1
  95. package/include/hwy/profiler.h +622 -486
  96. package/include/hwy/targets.h +62 -20
  97. package/include/hwy/timer-inl.h +8 -160
  98. package/include/hwy/timer.h +170 -3
  99. package/include/hwy/x86_cpuid.h +81 -0
  100. package/include/libheif/heif_cxx.h +25 -5
  101. package/include/libheif/heif_regions.h +5 -5
  102. package/include/libheif/heif_version.h +2 -2
  103. package/include/librsvg-2.0/librsvg/rsvg-version.h +3 -3
  104. package/include/libxml2/libxml/valid.h +0 -3
  105. package/include/libxml2/libxml/xmlerror.h +1 -1
  106. package/include/libxml2/libxml/xmlversion.h +4 -4
  107. package/include/pango-1.0/pango/pango-enum-types.h +3 -0
  108. package/include/pango-1.0/pango/pango-features.h +3 -3
  109. package/include/pango-1.0/pango/pango-font.h +30 -0
  110. package/include/pango-1.0/pango/pango-version-macros.h +26 -0
  111. package/include/vips/connection.h +4 -4
  112. package/include/vips/version.h +4 -4
  113. package/include/zlib.h +3 -3
  114. package/package.json +1 -1
  115. package/versions.json +13 -13
@@ -0,0 +1,184 @@
1
+ /****************************************************************************
2
+ *
3
+ * ftlogging.h
4
+ *
5
+ * Additional debugging APIs.
6
+ *
7
+ * Copyright (C) 2020-2025 by
8
+ * David Turner, Robert Wilhelm, and Werner Lemberg.
9
+ *
10
+ * This file is part of the FreeType project, and may only be used,
11
+ * modified, and distributed under the terms of the FreeType project
12
+ * license, LICENSE.TXT. By continuing to use, modify, or distribute
13
+ * this file you indicate that you have read the license and
14
+ * understand and accept it fully.
15
+ *
16
+ */
17
+
18
+
19
+ #ifndef FTLOGGING_H_
20
+ #define FTLOGGING_H_
21
+
22
+
23
+ #include <ft2build.h>
24
+ #include FT_CONFIG_CONFIG_H
25
+
26
+
27
+ FT_BEGIN_HEADER
28
+
29
+
30
+ /**************************************************************************
31
+ *
32
+ * @section:
33
+ * debugging_apis
34
+ *
35
+ * @title:
36
+ * External Debugging APIs
37
+ *
38
+ * @abstract:
39
+ * Public APIs to control the `FT_DEBUG_LOGGING` macro.
40
+ *
41
+ * @description:
42
+ * This section contains the declarations of public functions that
43
+ * enables fine control of what the `FT_DEBUG_LOGGING` macro outputs.
44
+ *
45
+ */
46
+
47
+
48
+ /**************************************************************************
49
+ *
50
+ * @function:
51
+ * FT_Trace_Set_Level
52
+ *
53
+ * @description:
54
+ * Change the levels of tracing components of FreeType at run time.
55
+ *
56
+ * @input:
57
+ * tracing_level ::
58
+ * New tracing value.
59
+ *
60
+ * @example:
61
+ * The following call makes FreeType trace everything but the 'memory'
62
+ * component.
63
+ *
64
+ * ```
65
+ * FT_Trace_Set_Level( "any:7 memory:0" );
66
+ * ```
67
+ *
68
+ * @note:
69
+ * This function does nothing if compilation option `FT_DEBUG_LOGGING`
70
+ * isn't set.
71
+ *
72
+ * @since:
73
+ * 2.11
74
+ *
75
+ */
76
+ FT_EXPORT( void )
77
+ FT_Trace_Set_Level( const char* tracing_level );
78
+
79
+
80
+ /**************************************************************************
81
+ *
82
+ * @function:
83
+ * FT_Trace_Set_Default_Level
84
+ *
85
+ * @description:
86
+ * Reset tracing value of FreeType's components to the default value
87
+ * (i.e., to the value of the `FT2_DEBUG` environment value or to NULL
88
+ * if `FT2_DEBUG` is not set).
89
+ *
90
+ * @note:
91
+ * This function does nothing if compilation option `FT_DEBUG_LOGGING`
92
+ * isn't set.
93
+ *
94
+ * @since:
95
+ * 2.11
96
+ *
97
+ */
98
+ FT_EXPORT( void )
99
+ FT_Trace_Set_Default_Level( void );
100
+
101
+
102
+ /**************************************************************************
103
+ *
104
+ * @functype:
105
+ * FT_Custom_Log_Handler
106
+ *
107
+ * @description:
108
+ * A function typedef that is used to handle the logging of tracing and
109
+ * debug messages on a file system.
110
+ *
111
+ * @input:
112
+ * ft_component ::
113
+ * The name of `FT_COMPONENT` from which the current debug or error
114
+ * message is produced.
115
+ *
116
+ * fmt ::
117
+ * Actual debug or tracing message.
118
+ *
119
+ * args::
120
+ * Arguments of debug or tracing messages.
121
+ *
122
+ * @since:
123
+ * 2.11
124
+ *
125
+ */
126
+ typedef void
127
+ (*FT_Custom_Log_Handler)( const char* ft_component,
128
+ const char* fmt,
129
+ va_list args );
130
+
131
+
132
+ /**************************************************************************
133
+ *
134
+ * @function:
135
+ * FT_Set_Log_Handler
136
+ *
137
+ * @description:
138
+ * A function to set a custom log handler.
139
+ *
140
+ * @input:
141
+ * handler ::
142
+ * New logging function.
143
+ *
144
+ * @note:
145
+ * This function does nothing if compilation option `FT_DEBUG_LOGGING`
146
+ * isn't set.
147
+ *
148
+ * @since:
149
+ * 2.11
150
+ *
151
+ */
152
+ FT_EXPORT( void )
153
+ FT_Set_Log_Handler( FT_Custom_Log_Handler handler );
154
+
155
+
156
+ /**************************************************************************
157
+ *
158
+ * @function:
159
+ * FT_Set_Default_Log_Handler
160
+ *
161
+ * @description:
162
+ * A function to undo the effect of @FT_Set_Log_Handler, resetting the
163
+ * log handler to FreeType's built-in version.
164
+ *
165
+ * @note:
166
+ * This function does nothing if compilation option `FT_DEBUG_LOGGING`
167
+ * isn't set.
168
+ *
169
+ * @since:
170
+ * 2.11
171
+ *
172
+ */
173
+ FT_EXPORT( void )
174
+ FT_Set_Default_Log_Handler( void );
175
+
176
+ /* */
177
+
178
+
179
+ FT_END_HEADER
180
+
181
+ #endif /* FTLOGGING_H_ */
182
+
183
+
184
+ /* END */
@@ -4,7 +4,7 @@
4
4
  *
5
5
  * LZW-compressed stream support.
6
6
  *
7
- * Copyright (C) 2004-2024 by
7
+ * Copyright (C) 2004-2025 by
8
8
  * David Turner, Robert Wilhelm, and Werner Lemberg.
9
9
  *
10
10
  * This file is part of the FreeType project, and may only be used,
@@ -4,7 +4,7 @@
4
4
  *
5
5
  * Additional Mac-specific API.
6
6
  *
7
- * Copyright (C) 1996-2024 by
7
+ * Copyright (C) 1996-2025 by
8
8
  * Just van Rossum, David Turner, Robert Wilhelm, and Werner Lemberg.
9
9
  *
10
10
  * This file is part of the FreeType project, and may only be used,