@girs/gegl-0.4 0.4.47-3.2.4 → 0.4.47-3.2.6
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.
- package/README.md +14 -1
- package/gegl-0.4-ambient.d.ts +4 -1
- package/gegl-0.4-import.d.ts +0 -1
- package/gegl-0.4.d.cts +102 -0
- package/gegl-0.4.d.ts +102 -0
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|

|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
GJS TypeScript type definitions for Gegl-0.4, generated from library version 0.4.47 using [ts-for-gir](https://github.com/gjsify/ts-for-gir) v3.2.
|
|
8
|
+
GJS TypeScript type definitions for Gegl-0.4, generated from library version 0.4.47 using [ts-for-gir](https://github.com/gjsify/ts-for-gir) v3.2.6.
|
|
9
9
|
|
|
10
10
|
GEGL (Generic Graphics Library) is a data flow based image processing framework, providing floating point processing and non-destructive image processing capabilities to GNU Image Manipulation Program and other projects (imgflo, GNOME Photos, gcut, iconographer, …)
|
|
11
11
|
|
|
@@ -82,6 +82,19 @@ Now you have also type support for this, too:
|
|
|
82
82
|
const Gegl = imports.gi.Gegl;
|
|
83
83
|
```
|
|
84
84
|
|
|
85
|
+
|
|
86
|
+
### ESM vs. CommonJS
|
|
87
|
+
|
|
88
|
+
GJS supports two different import syntaxes. The new modern ESM syntax and the old global imports syntax.
|
|
89
|
+
|
|
90
|
+
In TypeScript projects for GJS and GNOME Shell extensions, you have the flexibility to use `ESM` syntax and then decide the import syntax for your bundled file. If your bundler is configured to use `CommonJS`, it will convert to the GJS-specific global imports syntax, like `const moduleName = imports.gi[moduleName]`. This is different from the traditional `require` syntax seen in Node.js. The global imports syntax is chosen because it aligns with the CommonJS format supported by NPM, which is used for the generated type definitions and this package.
|
|
91
|
+
|
|
92
|
+
On the other hand, if you configure your bundler to use ESM, it will retain the ESM import syntax. It's crucial to ensure that your bundler is set up to correctly translate and bundle these imports into either CommonJS or ESM format, depending on your project's requirements.
|
|
93
|
+
|
|
94
|
+
This approach is particularly important due to the `@girs` types, which include both `*.cjs `files, using the GJS global imports syntax, and `*.js` files, which utilize the ESM syntax. By appropriately setting up your bundler, you can control which syntax—CommonJS or ESM—is used in your project. The choice of CommonJS in this context is also due to the similarity between the GJS-specific global imports and CommonJS syntax, allowing for easier management and bundling in these specific types of projects.
|
|
95
|
+
|
|
96
|
+
Since GNOME Shell 45, you should only use ESM, even for GNOME Shell extensions. Before that, extensions had to use the global import syntax, unlike normal GJS applications, where ESM has been available for some time.
|
|
97
|
+
|
|
85
98
|
### Bundle
|
|
86
99
|
|
|
87
100
|
Depending on your project configuration, it is recommended to use a bundler like [esbuild](https://esbuild.github.io/). You can find examples using different bundlers [here](https://github.com/gjsify/ts-for-gir/tree/main/examples).
|
package/gegl-0.4-ambient.d.ts
CHANGED
package/gegl-0.4-import.d.ts
CHANGED
package/gegl-0.4.d.cts
CHANGED
|
@@ -830,6 +830,14 @@ export module Buffer {
|
|
|
830
830
|
width?: number | null
|
|
831
831
|
x?: number | null
|
|
832
832
|
y?: number | null
|
|
833
|
+
abyssHeight?: number | null
|
|
834
|
+
abyssWidth?: number | null
|
|
835
|
+
abyssX?: number | null
|
|
836
|
+
abyssY?: number | null
|
|
837
|
+
shiftX?: number | null
|
|
838
|
+
shiftY?: number | null
|
|
839
|
+
tileHeight?: number | null
|
|
840
|
+
tileWidth?: number | null
|
|
833
841
|
}
|
|
834
842
|
|
|
835
843
|
}
|
|
@@ -839,9 +847,13 @@ export interface Buffer {
|
|
|
839
847
|
// Own properties of Gegl-0.4.Gegl.Buffer
|
|
840
848
|
|
|
841
849
|
readonly abyss_height: number
|
|
850
|
+
readonly abyssHeight: number
|
|
842
851
|
readonly abyss_width: number
|
|
852
|
+
readonly abyssWidth: number
|
|
843
853
|
readonly abyss_x: number
|
|
854
|
+
readonly abyssX: number
|
|
844
855
|
readonly abyss_y: number
|
|
856
|
+
readonly abyssY: number
|
|
845
857
|
readonly backend: TileBackend
|
|
846
858
|
format: any
|
|
847
859
|
height: number
|
|
@@ -849,10 +861,15 @@ export interface Buffer {
|
|
|
849
861
|
readonly path: string | null
|
|
850
862
|
readonly pixels: number
|
|
851
863
|
readonly px_size: number
|
|
864
|
+
readonly pxSize: number
|
|
852
865
|
readonly shift_x: number
|
|
866
|
+
readonly shiftX: number
|
|
853
867
|
readonly shift_y: number
|
|
868
|
+
readonly shiftY: number
|
|
854
869
|
readonly tile_height: number
|
|
870
|
+
readonly tileHeight: number
|
|
855
871
|
readonly tile_width: number
|
|
872
|
+
readonly tileWidth: number
|
|
856
873
|
width: number
|
|
857
874
|
x: number
|
|
858
875
|
y: number
|
|
@@ -1303,6 +1320,15 @@ export module Config {
|
|
|
1303
1320
|
tile_height?: number | null
|
|
1304
1321
|
tile_width?: number | null
|
|
1305
1322
|
use_opencl?: boolean | null
|
|
1323
|
+
applicationLicense?: string | null
|
|
1324
|
+
chunkSize?: number | null
|
|
1325
|
+
mipmapRendering?: boolean | null
|
|
1326
|
+
queueSize?: number | null
|
|
1327
|
+
swapCompression?: string | null
|
|
1328
|
+
tileCacheSize?: number | null
|
|
1329
|
+
tileHeight?: number | null
|
|
1330
|
+
tileWidth?: number | null
|
|
1331
|
+
useOpencl?: boolean | null
|
|
1306
1332
|
}
|
|
1307
1333
|
|
|
1308
1334
|
}
|
|
@@ -1312,17 +1338,26 @@ export interface Config {
|
|
|
1312
1338
|
// Own properties of Gegl-0.4.Gegl.Config
|
|
1313
1339
|
|
|
1314
1340
|
application_license: string | null
|
|
1341
|
+
applicationLicense: string | null
|
|
1315
1342
|
chunk_size: number
|
|
1343
|
+
chunkSize: number
|
|
1316
1344
|
mipmap_rendering: boolean
|
|
1345
|
+
mipmapRendering: boolean
|
|
1317
1346
|
quality: number
|
|
1318
1347
|
queue_size: number
|
|
1348
|
+
queueSize: number
|
|
1319
1349
|
swap: string | null
|
|
1320
1350
|
swap_compression: string | null
|
|
1351
|
+
swapCompression: string | null
|
|
1321
1352
|
threads: number
|
|
1322
1353
|
tile_cache_size: number
|
|
1354
|
+
tileCacheSize: number
|
|
1323
1355
|
tile_height: number
|
|
1356
|
+
tileHeight: number
|
|
1324
1357
|
tile_width: number
|
|
1358
|
+
tileWidth: number
|
|
1325
1359
|
use_opencl: boolean
|
|
1360
|
+
useOpencl: boolean
|
|
1326
1361
|
|
|
1327
1362
|
// Class property signals of Gegl-0.4.Gegl.Config
|
|
1328
1363
|
|
|
@@ -1718,6 +1753,18 @@ export module MetadataStore {
|
|
|
1718
1753
|
* Warning of nature of content.
|
|
1719
1754
|
*/
|
|
1720
1755
|
warning?: string | null
|
|
1756
|
+
/**
|
|
1757
|
+
* A #GeglResolutionUnit specifying units for the image resolution (density).
|
|
1758
|
+
*/
|
|
1759
|
+
resolutionUnit?: ResolutionUnit | null
|
|
1760
|
+
/**
|
|
1761
|
+
* X resolution or density in dots per unit.
|
|
1762
|
+
*/
|
|
1763
|
+
resolutionX?: number | null
|
|
1764
|
+
/**
|
|
1765
|
+
* Y resolution or density in dots per unit.
|
|
1766
|
+
*/
|
|
1767
|
+
resolutionY?: number | null
|
|
1721
1768
|
}
|
|
1722
1769
|
|
|
1723
1770
|
}
|
|
@@ -1752,18 +1799,36 @@ export interface MetadataStore extends Metadata {
|
|
|
1752
1799
|
* handlers.
|
|
1753
1800
|
*/
|
|
1754
1801
|
readonly file_module_name: string | null
|
|
1802
|
+
/**
|
|
1803
|
+
* Current file loader/saver module name. Valid only while a #GeglMetadata
|
|
1804
|
+
* mapping is registered. This property is mainly provided for use in signal
|
|
1805
|
+
* handlers.
|
|
1806
|
+
*/
|
|
1807
|
+
readonly fileModuleName: string | null
|
|
1755
1808
|
/**
|
|
1756
1809
|
* A #GeglResolutionUnit specifying units for the image resolution (density).
|
|
1757
1810
|
*/
|
|
1758
1811
|
resolution_unit: ResolutionUnit
|
|
1812
|
+
/**
|
|
1813
|
+
* A #GeglResolutionUnit specifying units for the image resolution (density).
|
|
1814
|
+
*/
|
|
1815
|
+
resolutionUnit: ResolutionUnit
|
|
1759
1816
|
/**
|
|
1760
1817
|
* X resolution or density in dots per unit.
|
|
1761
1818
|
*/
|
|
1762
1819
|
resolution_x: number
|
|
1820
|
+
/**
|
|
1821
|
+
* X resolution or density in dots per unit.
|
|
1822
|
+
*/
|
|
1823
|
+
resolutionX: number
|
|
1763
1824
|
/**
|
|
1764
1825
|
* Y resolution or density in dots per unit.
|
|
1765
1826
|
*/
|
|
1766
1827
|
resolution_y: number
|
|
1828
|
+
/**
|
|
1829
|
+
* Y resolution or density in dots per unit.
|
|
1830
|
+
*/
|
|
1831
|
+
resolutionY: number
|
|
1767
1832
|
/**
|
|
1768
1833
|
* Software used to create the image.
|
|
1769
1834
|
*/
|
|
@@ -2150,6 +2215,10 @@ export module Node {
|
|
|
2150
2215
|
operation?: string | null
|
|
2151
2216
|
passthrough?: boolean | null
|
|
2152
2217
|
use_opencl?: boolean | null
|
|
2218
|
+
cachePolicy?: CachePolicy | null
|
|
2219
|
+
dontCache?: boolean | null
|
|
2220
|
+
geglOperation?: Operation | null
|
|
2221
|
+
useOpencl?: boolean | null
|
|
2153
2222
|
}
|
|
2154
2223
|
|
|
2155
2224
|
}
|
|
@@ -2159,12 +2228,16 @@ export interface Node {
|
|
|
2159
2228
|
// Own properties of Gegl-0.4.Gegl.Node
|
|
2160
2229
|
|
|
2161
2230
|
cache_policy: CachePolicy
|
|
2231
|
+
cachePolicy: CachePolicy
|
|
2162
2232
|
dont_cache: boolean
|
|
2233
|
+
dontCache: boolean
|
|
2163
2234
|
gegl_operation: Operation
|
|
2235
|
+
geglOperation: Operation
|
|
2164
2236
|
name: string | null
|
|
2165
2237
|
operation: string | null
|
|
2166
2238
|
passthrough: boolean
|
|
2167
2239
|
use_opencl: boolean
|
|
2240
|
+
useOpencl: boolean
|
|
2168
2241
|
|
|
2169
2242
|
// Owm methods of Gegl-0.4.Gegl.Node
|
|
2170
2243
|
|
|
@@ -2961,26 +3034,47 @@ export interface Stats {
|
|
|
2961
3034
|
// Own properties of Gegl-0.4.Gegl.Stats
|
|
2962
3035
|
|
|
2963
3036
|
readonly active_threads: number
|
|
3037
|
+
readonly activeThreads: number
|
|
2964
3038
|
readonly assigned_threads: number
|
|
3039
|
+
readonly assignedThreads: number
|
|
2965
3040
|
readonly scratch_total: number
|
|
3041
|
+
readonly scratchTotal: number
|
|
2966
3042
|
readonly swap_busy: boolean
|
|
3043
|
+
readonly swapBusy: boolean
|
|
2967
3044
|
readonly swap_file_size: number
|
|
3045
|
+
readonly swapFileSize: number
|
|
2968
3046
|
readonly swap_queue_full: boolean
|
|
3047
|
+
readonly swapQueueFull: boolean
|
|
2969
3048
|
readonly swap_queue_stalls: number
|
|
3049
|
+
readonly swapQueueStalls: number
|
|
2970
3050
|
readonly swap_queued_total: number
|
|
3051
|
+
readonly swapQueuedTotal: number
|
|
2971
3052
|
readonly swap_read_total: number
|
|
3053
|
+
readonly swapReadTotal: number
|
|
2972
3054
|
readonly swap_reading: boolean
|
|
3055
|
+
readonly swapReading: boolean
|
|
2973
3056
|
readonly swap_total: number
|
|
3057
|
+
readonly swapTotal: number
|
|
2974
3058
|
readonly swap_total_uncompressed: number
|
|
3059
|
+
readonly swapTotalUncompressed: number
|
|
2975
3060
|
readonly swap_write_total: number
|
|
3061
|
+
readonly swapWriteTotal: number
|
|
2976
3062
|
readonly swap_writing: boolean
|
|
3063
|
+
readonly swapWriting: boolean
|
|
2977
3064
|
readonly tile_alloc_total: number
|
|
3065
|
+
readonly tileAllocTotal: number
|
|
2978
3066
|
readonly tile_cache_hits: number
|
|
3067
|
+
readonly tileCacheHits: number
|
|
2979
3068
|
readonly tile_cache_misses: number
|
|
3069
|
+
readonly tileCacheMisses: number
|
|
2980
3070
|
readonly tile_cache_total: number
|
|
3071
|
+
readonly tileCacheTotal: number
|
|
2981
3072
|
readonly tile_cache_total_max: number
|
|
3073
|
+
readonly tileCacheTotalMax: number
|
|
2982
3074
|
readonly tile_cache_total_uncompressed: number
|
|
3075
|
+
readonly tileCacheTotalUncompressed: number
|
|
2983
3076
|
readonly zoom_total: number
|
|
3077
|
+
readonly zoomTotal: number
|
|
2984
3078
|
|
|
2985
3079
|
// Class property signals of Gegl-0.4.Gegl.Stats
|
|
2986
3080
|
|
|
@@ -3078,6 +3172,9 @@ export module TileBackend {
|
|
|
3078
3172
|
format?: any | null
|
|
3079
3173
|
tile_height?: number | null
|
|
3080
3174
|
tile_width?: number | null
|
|
3175
|
+
flushOnDestroy?: boolean | null
|
|
3176
|
+
tileHeight?: number | null
|
|
3177
|
+
tileWidth?: number | null
|
|
3081
3178
|
}
|
|
3082
3179
|
|
|
3083
3180
|
}
|
|
@@ -3087,11 +3184,16 @@ export interface TileBackend {
|
|
|
3087
3184
|
// Own properties of Gegl-0.4.Gegl.TileBackend
|
|
3088
3185
|
|
|
3089
3186
|
flush_on_destroy: boolean
|
|
3187
|
+
flushOnDestroy: boolean
|
|
3090
3188
|
readonly format: any
|
|
3091
3189
|
readonly px_size: number
|
|
3190
|
+
readonly pxSize: number
|
|
3092
3191
|
readonly tile_height: number
|
|
3192
|
+
readonly tileHeight: number
|
|
3093
3193
|
readonly tile_size: number
|
|
3194
|
+
readonly tileSize: number
|
|
3094
3195
|
readonly tile_width: number
|
|
3196
|
+
readonly tileWidth: number
|
|
3095
3197
|
|
|
3096
3198
|
// Own fields of Gegl-0.4.Gegl.TileBackend
|
|
3097
3199
|
|
package/gegl-0.4.d.ts
CHANGED
|
@@ -832,6 +832,14 @@ module Buffer {
|
|
|
832
832
|
width?: number | null
|
|
833
833
|
x?: number | null
|
|
834
834
|
y?: number | null
|
|
835
|
+
abyssHeight?: number | null
|
|
836
|
+
abyssWidth?: number | null
|
|
837
|
+
abyssX?: number | null
|
|
838
|
+
abyssY?: number | null
|
|
839
|
+
shiftX?: number | null
|
|
840
|
+
shiftY?: number | null
|
|
841
|
+
tileHeight?: number | null
|
|
842
|
+
tileWidth?: number | null
|
|
835
843
|
}
|
|
836
844
|
|
|
837
845
|
}
|
|
@@ -841,9 +849,13 @@ interface Buffer {
|
|
|
841
849
|
// Own properties of Gegl-0.4.Gegl.Buffer
|
|
842
850
|
|
|
843
851
|
readonly abyss_height: number
|
|
852
|
+
readonly abyssHeight: number
|
|
844
853
|
readonly abyss_width: number
|
|
854
|
+
readonly abyssWidth: number
|
|
845
855
|
readonly abyss_x: number
|
|
856
|
+
readonly abyssX: number
|
|
846
857
|
readonly abyss_y: number
|
|
858
|
+
readonly abyssY: number
|
|
847
859
|
readonly backend: TileBackend
|
|
848
860
|
format: any
|
|
849
861
|
height: number
|
|
@@ -851,10 +863,15 @@ interface Buffer {
|
|
|
851
863
|
readonly path: string | null
|
|
852
864
|
readonly pixels: number
|
|
853
865
|
readonly px_size: number
|
|
866
|
+
readonly pxSize: number
|
|
854
867
|
readonly shift_x: number
|
|
868
|
+
readonly shiftX: number
|
|
855
869
|
readonly shift_y: number
|
|
870
|
+
readonly shiftY: number
|
|
856
871
|
readonly tile_height: number
|
|
872
|
+
readonly tileHeight: number
|
|
857
873
|
readonly tile_width: number
|
|
874
|
+
readonly tileWidth: number
|
|
858
875
|
width: number
|
|
859
876
|
x: number
|
|
860
877
|
y: number
|
|
@@ -1305,6 +1322,15 @@ module Config {
|
|
|
1305
1322
|
tile_height?: number | null
|
|
1306
1323
|
tile_width?: number | null
|
|
1307
1324
|
use_opencl?: boolean | null
|
|
1325
|
+
applicationLicense?: string | null
|
|
1326
|
+
chunkSize?: number | null
|
|
1327
|
+
mipmapRendering?: boolean | null
|
|
1328
|
+
queueSize?: number | null
|
|
1329
|
+
swapCompression?: string | null
|
|
1330
|
+
tileCacheSize?: number | null
|
|
1331
|
+
tileHeight?: number | null
|
|
1332
|
+
tileWidth?: number | null
|
|
1333
|
+
useOpencl?: boolean | null
|
|
1308
1334
|
}
|
|
1309
1335
|
|
|
1310
1336
|
}
|
|
@@ -1314,17 +1340,26 @@ interface Config {
|
|
|
1314
1340
|
// Own properties of Gegl-0.4.Gegl.Config
|
|
1315
1341
|
|
|
1316
1342
|
application_license: string | null
|
|
1343
|
+
applicationLicense: string | null
|
|
1317
1344
|
chunk_size: number
|
|
1345
|
+
chunkSize: number
|
|
1318
1346
|
mipmap_rendering: boolean
|
|
1347
|
+
mipmapRendering: boolean
|
|
1319
1348
|
quality: number
|
|
1320
1349
|
queue_size: number
|
|
1350
|
+
queueSize: number
|
|
1321
1351
|
swap: string | null
|
|
1322
1352
|
swap_compression: string | null
|
|
1353
|
+
swapCompression: string | null
|
|
1323
1354
|
threads: number
|
|
1324
1355
|
tile_cache_size: number
|
|
1356
|
+
tileCacheSize: number
|
|
1325
1357
|
tile_height: number
|
|
1358
|
+
tileHeight: number
|
|
1326
1359
|
tile_width: number
|
|
1360
|
+
tileWidth: number
|
|
1327
1361
|
use_opencl: boolean
|
|
1362
|
+
useOpencl: boolean
|
|
1328
1363
|
|
|
1329
1364
|
// Class property signals of Gegl-0.4.Gegl.Config
|
|
1330
1365
|
|
|
@@ -1720,6 +1755,18 @@ module MetadataStore {
|
|
|
1720
1755
|
* Warning of nature of content.
|
|
1721
1756
|
*/
|
|
1722
1757
|
warning?: string | null
|
|
1758
|
+
/**
|
|
1759
|
+
* A #GeglResolutionUnit specifying units for the image resolution (density).
|
|
1760
|
+
*/
|
|
1761
|
+
resolutionUnit?: ResolutionUnit | null
|
|
1762
|
+
/**
|
|
1763
|
+
* X resolution or density in dots per unit.
|
|
1764
|
+
*/
|
|
1765
|
+
resolutionX?: number | null
|
|
1766
|
+
/**
|
|
1767
|
+
* Y resolution or density in dots per unit.
|
|
1768
|
+
*/
|
|
1769
|
+
resolutionY?: number | null
|
|
1723
1770
|
}
|
|
1724
1771
|
|
|
1725
1772
|
}
|
|
@@ -1754,18 +1801,36 @@ interface MetadataStore extends Metadata {
|
|
|
1754
1801
|
* handlers.
|
|
1755
1802
|
*/
|
|
1756
1803
|
readonly file_module_name: string | null
|
|
1804
|
+
/**
|
|
1805
|
+
* Current file loader/saver module name. Valid only while a #GeglMetadata
|
|
1806
|
+
* mapping is registered. This property is mainly provided for use in signal
|
|
1807
|
+
* handlers.
|
|
1808
|
+
*/
|
|
1809
|
+
readonly fileModuleName: string | null
|
|
1757
1810
|
/**
|
|
1758
1811
|
* A #GeglResolutionUnit specifying units for the image resolution (density).
|
|
1759
1812
|
*/
|
|
1760
1813
|
resolution_unit: ResolutionUnit
|
|
1814
|
+
/**
|
|
1815
|
+
* A #GeglResolutionUnit specifying units for the image resolution (density).
|
|
1816
|
+
*/
|
|
1817
|
+
resolutionUnit: ResolutionUnit
|
|
1761
1818
|
/**
|
|
1762
1819
|
* X resolution or density in dots per unit.
|
|
1763
1820
|
*/
|
|
1764
1821
|
resolution_x: number
|
|
1822
|
+
/**
|
|
1823
|
+
* X resolution or density in dots per unit.
|
|
1824
|
+
*/
|
|
1825
|
+
resolutionX: number
|
|
1765
1826
|
/**
|
|
1766
1827
|
* Y resolution or density in dots per unit.
|
|
1767
1828
|
*/
|
|
1768
1829
|
resolution_y: number
|
|
1830
|
+
/**
|
|
1831
|
+
* Y resolution or density in dots per unit.
|
|
1832
|
+
*/
|
|
1833
|
+
resolutionY: number
|
|
1769
1834
|
/**
|
|
1770
1835
|
* Software used to create the image.
|
|
1771
1836
|
*/
|
|
@@ -2152,6 +2217,10 @@ module Node {
|
|
|
2152
2217
|
operation?: string | null
|
|
2153
2218
|
passthrough?: boolean | null
|
|
2154
2219
|
use_opencl?: boolean | null
|
|
2220
|
+
cachePolicy?: CachePolicy | null
|
|
2221
|
+
dontCache?: boolean | null
|
|
2222
|
+
geglOperation?: Operation | null
|
|
2223
|
+
useOpencl?: boolean | null
|
|
2155
2224
|
}
|
|
2156
2225
|
|
|
2157
2226
|
}
|
|
@@ -2161,12 +2230,16 @@ interface Node {
|
|
|
2161
2230
|
// Own properties of Gegl-0.4.Gegl.Node
|
|
2162
2231
|
|
|
2163
2232
|
cache_policy: CachePolicy
|
|
2233
|
+
cachePolicy: CachePolicy
|
|
2164
2234
|
dont_cache: boolean
|
|
2235
|
+
dontCache: boolean
|
|
2165
2236
|
gegl_operation: Operation
|
|
2237
|
+
geglOperation: Operation
|
|
2166
2238
|
name: string | null
|
|
2167
2239
|
operation: string | null
|
|
2168
2240
|
passthrough: boolean
|
|
2169
2241
|
use_opencl: boolean
|
|
2242
|
+
useOpencl: boolean
|
|
2170
2243
|
|
|
2171
2244
|
// Owm methods of Gegl-0.4.Gegl.Node
|
|
2172
2245
|
|
|
@@ -2963,26 +3036,47 @@ interface Stats {
|
|
|
2963
3036
|
// Own properties of Gegl-0.4.Gegl.Stats
|
|
2964
3037
|
|
|
2965
3038
|
readonly active_threads: number
|
|
3039
|
+
readonly activeThreads: number
|
|
2966
3040
|
readonly assigned_threads: number
|
|
3041
|
+
readonly assignedThreads: number
|
|
2967
3042
|
readonly scratch_total: number
|
|
3043
|
+
readonly scratchTotal: number
|
|
2968
3044
|
readonly swap_busy: boolean
|
|
3045
|
+
readonly swapBusy: boolean
|
|
2969
3046
|
readonly swap_file_size: number
|
|
3047
|
+
readonly swapFileSize: number
|
|
2970
3048
|
readonly swap_queue_full: boolean
|
|
3049
|
+
readonly swapQueueFull: boolean
|
|
2971
3050
|
readonly swap_queue_stalls: number
|
|
3051
|
+
readonly swapQueueStalls: number
|
|
2972
3052
|
readonly swap_queued_total: number
|
|
3053
|
+
readonly swapQueuedTotal: number
|
|
2973
3054
|
readonly swap_read_total: number
|
|
3055
|
+
readonly swapReadTotal: number
|
|
2974
3056
|
readonly swap_reading: boolean
|
|
3057
|
+
readonly swapReading: boolean
|
|
2975
3058
|
readonly swap_total: number
|
|
3059
|
+
readonly swapTotal: number
|
|
2976
3060
|
readonly swap_total_uncompressed: number
|
|
3061
|
+
readonly swapTotalUncompressed: number
|
|
2977
3062
|
readonly swap_write_total: number
|
|
3063
|
+
readonly swapWriteTotal: number
|
|
2978
3064
|
readonly swap_writing: boolean
|
|
3065
|
+
readonly swapWriting: boolean
|
|
2979
3066
|
readonly tile_alloc_total: number
|
|
3067
|
+
readonly tileAllocTotal: number
|
|
2980
3068
|
readonly tile_cache_hits: number
|
|
3069
|
+
readonly tileCacheHits: number
|
|
2981
3070
|
readonly tile_cache_misses: number
|
|
3071
|
+
readonly tileCacheMisses: number
|
|
2982
3072
|
readonly tile_cache_total: number
|
|
3073
|
+
readonly tileCacheTotal: number
|
|
2983
3074
|
readonly tile_cache_total_max: number
|
|
3075
|
+
readonly tileCacheTotalMax: number
|
|
2984
3076
|
readonly tile_cache_total_uncompressed: number
|
|
3077
|
+
readonly tileCacheTotalUncompressed: number
|
|
2985
3078
|
readonly zoom_total: number
|
|
3079
|
+
readonly zoomTotal: number
|
|
2986
3080
|
|
|
2987
3081
|
// Class property signals of Gegl-0.4.Gegl.Stats
|
|
2988
3082
|
|
|
@@ -3080,6 +3174,9 @@ module TileBackend {
|
|
|
3080
3174
|
format?: any | null
|
|
3081
3175
|
tile_height?: number | null
|
|
3082
3176
|
tile_width?: number | null
|
|
3177
|
+
flushOnDestroy?: boolean | null
|
|
3178
|
+
tileHeight?: number | null
|
|
3179
|
+
tileWidth?: number | null
|
|
3083
3180
|
}
|
|
3084
3181
|
|
|
3085
3182
|
}
|
|
@@ -3089,11 +3186,16 @@ interface TileBackend {
|
|
|
3089
3186
|
// Own properties of Gegl-0.4.Gegl.TileBackend
|
|
3090
3187
|
|
|
3091
3188
|
flush_on_destroy: boolean
|
|
3189
|
+
flushOnDestroy: boolean
|
|
3092
3190
|
readonly format: any
|
|
3093
3191
|
readonly px_size: number
|
|
3192
|
+
readonly pxSize: number
|
|
3094
3193
|
readonly tile_height: number
|
|
3194
|
+
readonly tileHeight: number
|
|
3095
3195
|
readonly tile_size: number
|
|
3196
|
+
readonly tileSize: number
|
|
3096
3197
|
readonly tile_width: number
|
|
3198
|
+
readonly tileWidth: number
|
|
3097
3199
|
|
|
3098
3200
|
// Own fields of Gegl-0.4.Gegl.TileBackend
|
|
3099
3201
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@girs/gegl-0.4",
|
|
3
|
-
"version": "0.4.47-3.2.
|
|
3
|
+
"version": "0.4.47-3.2.6",
|
|
4
4
|
"description": "GJS TypeScript type definitions for Gegl-0.4, generated from library version 0.4.47",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "gegl-0.4.js",
|
|
@@ -25,10 +25,10 @@
|
|
|
25
25
|
"test:cjs": "NODE_OPTIONS=--max_old_space_size=9216 tsc --noEmit gegl-0.4.d.cts"
|
|
26
26
|
},
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@girs/babl-0.1": "^0.1.107-3.2.
|
|
29
|
-
"@girs/gjs": "^3.2.
|
|
30
|
-
"@girs/glib-2.0": "^2.78.0-3.2.
|
|
31
|
-
"@girs/gobject-2.0": "^2.78.0-3.2.
|
|
28
|
+
"@girs/babl-0.1": "^0.1.107-3.2.6",
|
|
29
|
+
"@girs/gjs": "^3.2.6",
|
|
30
|
+
"@girs/glib-2.0": "^2.78.0-3.2.6",
|
|
31
|
+
"@girs/gobject-2.0": "^2.78.0-3.2.6"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
34
|
"typescript": "*"
|