@girs/gegl-0.3 0.3.35-3.2.7 → 0.3.35-3.2.8
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 +1 -1
- package/gegl-0.3-ambient.js +2 -0
- package/gegl-0.3-import.js +3 -0
- package/gegl-0.3.d.cts +13 -67
- package/gegl-0.3.d.ts +13 -67
- package/package.json +13 -7
package/README.md
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|

|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
GJS TypeScript type definitions for Gegl-0.3, generated from library version 0.3.35 using [ts-for-gir](https://github.com/gjsify/ts-for-gir) v3.2.
|
|
8
|
+
GJS TypeScript type definitions for Gegl-0.3, generated from library version 0.3.35 using [ts-for-gir](https://github.com/gjsify/ts-for-gir) v3.2.8.
|
|
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
|
|
package/gegl-0.3.d.cts
CHANGED
|
@@ -507,29 +507,21 @@ export module Buffer {
|
|
|
507
507
|
|
|
508
508
|
// Own constructor properties of Gegl-0.3.Gegl.Buffer
|
|
509
509
|
|
|
510
|
-
abyss_height?: number | null
|
|
511
|
-
abyss_width?: number | null
|
|
512
|
-
abyss_x?: number | null
|
|
513
|
-
abyss_y?: number | null
|
|
514
|
-
backend?: TileBackend | null
|
|
515
|
-
format?: any | null
|
|
516
|
-
height?: number | null
|
|
517
|
-
path?: string | null
|
|
518
|
-
shift_x?: number | null
|
|
519
|
-
shift_y?: number | null
|
|
520
|
-
tile_height?: number | null
|
|
521
|
-
tile_width?: number | null
|
|
522
|
-
width?: number | null
|
|
523
|
-
x?: number | null
|
|
524
|
-
y?: number | null
|
|
525
510
|
abyssHeight?: number | null
|
|
526
511
|
abyssWidth?: number | null
|
|
527
512
|
abyssX?: number | null
|
|
528
513
|
abyssY?: number | null
|
|
514
|
+
backend?: TileBackend | null
|
|
515
|
+
format?: any | null
|
|
516
|
+
height?: number | null
|
|
517
|
+
path?: string | null
|
|
529
518
|
shiftX?: number | null
|
|
530
519
|
shiftY?: number | null
|
|
531
520
|
tileHeight?: number | null
|
|
532
521
|
tileWidth?: number | null
|
|
522
|
+
width?: number | null
|
|
523
|
+
x?: number | null
|
|
524
|
+
y?: number | null
|
|
533
525
|
}
|
|
534
526
|
|
|
535
527
|
}
|
|
@@ -538,28 +530,19 @@ export interface Buffer {
|
|
|
538
530
|
|
|
539
531
|
// Own properties of Gegl-0.3.Gegl.Buffer
|
|
540
532
|
|
|
541
|
-
readonly abyss_height: number
|
|
542
533
|
readonly abyssHeight: number
|
|
543
|
-
readonly abyss_width: number
|
|
544
534
|
readonly abyssWidth: number
|
|
545
|
-
readonly abyss_x: number
|
|
546
535
|
readonly abyssX: number
|
|
547
|
-
readonly abyss_y: number
|
|
548
536
|
readonly abyssY: number
|
|
549
537
|
readonly backend: TileBackend
|
|
550
538
|
format: any
|
|
551
539
|
height: number
|
|
552
540
|
readonly path: string | null
|
|
553
541
|
readonly pixels: number
|
|
554
|
-
readonly px_size: number
|
|
555
542
|
readonly pxSize: number
|
|
556
|
-
readonly shift_x: number
|
|
557
543
|
readonly shiftX: number
|
|
558
|
-
readonly shift_y: number
|
|
559
544
|
readonly shiftY: number
|
|
560
|
-
readonly tile_height: number
|
|
561
545
|
readonly tileHeight: number
|
|
562
|
-
readonly tile_width: number
|
|
563
546
|
readonly tileWidth: number
|
|
564
547
|
width: number
|
|
565
548
|
x: number
|
|
@@ -939,19 +922,12 @@ export module Config {
|
|
|
939
922
|
|
|
940
923
|
// Own constructor properties of Gegl-0.3.Gegl.Config
|
|
941
924
|
|
|
942
|
-
application_license?: string | null
|
|
943
|
-
chunk_size?: number | null
|
|
944
|
-
quality?: number | null
|
|
945
|
-
queue_size?: number | null
|
|
946
|
-
swap?: string | null
|
|
947
|
-
threads?: number | null
|
|
948
|
-
tile_cache_size?: number | null
|
|
949
|
-
tile_height?: number | null
|
|
950
|
-
tile_width?: number | null
|
|
951
|
-
use_opencl?: boolean | null
|
|
952
925
|
applicationLicense?: string | null
|
|
953
926
|
chunkSize?: number | null
|
|
927
|
+
quality?: number | null
|
|
954
928
|
queueSize?: number | null
|
|
929
|
+
swap?: string | null
|
|
930
|
+
threads?: number | null
|
|
955
931
|
tileCacheSize?: number | null
|
|
956
932
|
tileHeight?: number | null
|
|
957
933
|
tileWidth?: number | null
|
|
@@ -964,22 +940,15 @@ export interface Config {
|
|
|
964
940
|
|
|
965
941
|
// Own properties of Gegl-0.3.Gegl.Config
|
|
966
942
|
|
|
967
|
-
application_license: string | null
|
|
968
943
|
applicationLicense: string | null
|
|
969
|
-
chunk_size: number
|
|
970
944
|
chunkSize: number
|
|
971
945
|
quality: number
|
|
972
|
-
queue_size: number
|
|
973
946
|
queueSize: number
|
|
974
947
|
swap: string | null
|
|
975
948
|
threads: number
|
|
976
|
-
tile_cache_size: number
|
|
977
949
|
tileCacheSize: number
|
|
978
|
-
tile_height: number
|
|
979
950
|
tileHeight: number
|
|
980
|
-
tile_width: number
|
|
981
951
|
tileWidth: number
|
|
982
|
-
use_opencl: boolean
|
|
983
952
|
useOpencl: boolean
|
|
984
953
|
|
|
985
954
|
// Class property signals of Gegl-0.3.Gegl.Config
|
|
@@ -1174,14 +1143,11 @@ export module Node {
|
|
|
1174
1143
|
|
|
1175
1144
|
// Own constructor properties of Gegl-0.3.Gegl.Node
|
|
1176
1145
|
|
|
1177
|
-
|
|
1178
|
-
|
|
1146
|
+
dontCache?: boolean | null
|
|
1147
|
+
geglOperation?: Operation | null
|
|
1179
1148
|
name?: string | null
|
|
1180
1149
|
operation?: string | null
|
|
1181
1150
|
passthrough?: boolean | null
|
|
1182
|
-
use_opencl?: boolean | null
|
|
1183
|
-
dontCache?: boolean | null
|
|
1184
|
-
geglOperation?: Operation | null
|
|
1185
1151
|
useOpencl?: boolean | null
|
|
1186
1152
|
}
|
|
1187
1153
|
|
|
@@ -1191,14 +1157,11 @@ export interface Node {
|
|
|
1191
1157
|
|
|
1192
1158
|
// Own properties of Gegl-0.3.Gegl.Node
|
|
1193
1159
|
|
|
1194
|
-
dont_cache: boolean
|
|
1195
1160
|
dontCache: boolean
|
|
1196
|
-
gegl_operation: Operation
|
|
1197
1161
|
geglOperation: Operation
|
|
1198
1162
|
name: string | null
|
|
1199
1163
|
operation: string | null
|
|
1200
1164
|
passthrough: boolean
|
|
1201
|
-
use_opencl: boolean
|
|
1202
1165
|
useOpencl: boolean
|
|
1203
1166
|
|
|
1204
1167
|
// Owm methods of Gegl-0.3.Gegl.Node
|
|
@@ -1963,23 +1926,14 @@ export interface Stats {
|
|
|
1963
1926
|
|
|
1964
1927
|
// Own properties of Gegl-0.3.Gegl.Stats
|
|
1965
1928
|
|
|
1966
|
-
readonly swap_busy: boolean
|
|
1967
1929
|
readonly swapBusy: boolean
|
|
1968
|
-
readonly swap_file_size: number
|
|
1969
1930
|
readonly swapFileSize: number
|
|
1970
|
-
readonly swap_total: number
|
|
1971
1931
|
readonly swapTotal: number
|
|
1972
|
-
readonly tile_cache_hits: number
|
|
1973
1932
|
readonly tileCacheHits: number
|
|
1974
|
-
readonly tile_cache_misses: number
|
|
1975
1933
|
readonly tileCacheMisses: number
|
|
1976
|
-
readonly tile_cache_total: number
|
|
1977
1934
|
readonly tileCacheTotal: number
|
|
1978
|
-
readonly tile_cache_total_max: number
|
|
1979
1935
|
readonly tileCacheTotalMax: number
|
|
1980
|
-
readonly tile_cache_total_uncloned: number
|
|
1981
1936
|
readonly tileCacheTotalUncloned: number
|
|
1982
|
-
readonly zoom_total: number
|
|
1983
1937
|
readonly zoomTotal: number
|
|
1984
1938
|
|
|
1985
1939
|
// Class property signals of Gegl-0.3.Gegl.Stats
|
|
@@ -2038,11 +1992,8 @@ export module TileBackend {
|
|
|
2038
1992
|
|
|
2039
1993
|
// Own constructor properties of Gegl-0.3.Gegl.TileBackend
|
|
2040
1994
|
|
|
2041
|
-
flush_on_destroy?: boolean | null
|
|
2042
|
-
format?: any | null
|
|
2043
|
-
tile_height?: number | null
|
|
2044
|
-
tile_width?: number | null
|
|
2045
1995
|
flushOnDestroy?: boolean | null
|
|
1996
|
+
format?: any | null
|
|
2046
1997
|
tileHeight?: number | null
|
|
2047
1998
|
tileWidth?: number | null
|
|
2048
1999
|
}
|
|
@@ -2053,16 +2004,11 @@ export interface TileBackend {
|
|
|
2053
2004
|
|
|
2054
2005
|
// Own properties of Gegl-0.3.Gegl.TileBackend
|
|
2055
2006
|
|
|
2056
|
-
flush_on_destroy: boolean
|
|
2057
2007
|
flushOnDestroy: boolean
|
|
2058
2008
|
readonly format: any
|
|
2059
|
-
readonly px_size: number
|
|
2060
2009
|
readonly pxSize: number
|
|
2061
|
-
readonly tile_height: number
|
|
2062
2010
|
readonly tileHeight: number
|
|
2063
|
-
readonly tile_size: number
|
|
2064
2011
|
readonly tileSize: number
|
|
2065
|
-
readonly tile_width: number
|
|
2066
2012
|
readonly tileWidth: number
|
|
2067
2013
|
|
|
2068
2014
|
// Own fields of Gegl-0.3.Gegl.TileBackend
|
package/gegl-0.3.d.ts
CHANGED
|
@@ -509,29 +509,21 @@ module Buffer {
|
|
|
509
509
|
|
|
510
510
|
// Own constructor properties of Gegl-0.3.Gegl.Buffer
|
|
511
511
|
|
|
512
|
-
abyss_height?: number | null
|
|
513
|
-
abyss_width?: number | null
|
|
514
|
-
abyss_x?: number | null
|
|
515
|
-
abyss_y?: number | null
|
|
516
|
-
backend?: TileBackend | null
|
|
517
|
-
format?: any | null
|
|
518
|
-
height?: number | null
|
|
519
|
-
path?: string | null
|
|
520
|
-
shift_x?: number | null
|
|
521
|
-
shift_y?: number | null
|
|
522
|
-
tile_height?: number | null
|
|
523
|
-
tile_width?: number | null
|
|
524
|
-
width?: number | null
|
|
525
|
-
x?: number | null
|
|
526
|
-
y?: number | null
|
|
527
512
|
abyssHeight?: number | null
|
|
528
513
|
abyssWidth?: number | null
|
|
529
514
|
abyssX?: number | null
|
|
530
515
|
abyssY?: number | null
|
|
516
|
+
backend?: TileBackend | null
|
|
517
|
+
format?: any | null
|
|
518
|
+
height?: number | null
|
|
519
|
+
path?: string | null
|
|
531
520
|
shiftX?: number | null
|
|
532
521
|
shiftY?: number | null
|
|
533
522
|
tileHeight?: number | null
|
|
534
523
|
tileWidth?: number | null
|
|
524
|
+
width?: number | null
|
|
525
|
+
x?: number | null
|
|
526
|
+
y?: number | null
|
|
535
527
|
}
|
|
536
528
|
|
|
537
529
|
}
|
|
@@ -540,28 +532,19 @@ interface Buffer {
|
|
|
540
532
|
|
|
541
533
|
// Own properties of Gegl-0.3.Gegl.Buffer
|
|
542
534
|
|
|
543
|
-
readonly abyss_height: number
|
|
544
535
|
readonly abyssHeight: number
|
|
545
|
-
readonly abyss_width: number
|
|
546
536
|
readonly abyssWidth: number
|
|
547
|
-
readonly abyss_x: number
|
|
548
537
|
readonly abyssX: number
|
|
549
|
-
readonly abyss_y: number
|
|
550
538
|
readonly abyssY: number
|
|
551
539
|
readonly backend: TileBackend
|
|
552
540
|
format: any
|
|
553
541
|
height: number
|
|
554
542
|
readonly path: string | null
|
|
555
543
|
readonly pixels: number
|
|
556
|
-
readonly px_size: number
|
|
557
544
|
readonly pxSize: number
|
|
558
|
-
readonly shift_x: number
|
|
559
545
|
readonly shiftX: number
|
|
560
|
-
readonly shift_y: number
|
|
561
546
|
readonly shiftY: number
|
|
562
|
-
readonly tile_height: number
|
|
563
547
|
readonly tileHeight: number
|
|
564
|
-
readonly tile_width: number
|
|
565
548
|
readonly tileWidth: number
|
|
566
549
|
width: number
|
|
567
550
|
x: number
|
|
@@ -941,19 +924,12 @@ module Config {
|
|
|
941
924
|
|
|
942
925
|
// Own constructor properties of Gegl-0.3.Gegl.Config
|
|
943
926
|
|
|
944
|
-
application_license?: string | null
|
|
945
|
-
chunk_size?: number | null
|
|
946
|
-
quality?: number | null
|
|
947
|
-
queue_size?: number | null
|
|
948
|
-
swap?: string | null
|
|
949
|
-
threads?: number | null
|
|
950
|
-
tile_cache_size?: number | null
|
|
951
|
-
tile_height?: number | null
|
|
952
|
-
tile_width?: number | null
|
|
953
|
-
use_opencl?: boolean | null
|
|
954
927
|
applicationLicense?: string | null
|
|
955
928
|
chunkSize?: number | null
|
|
929
|
+
quality?: number | null
|
|
956
930
|
queueSize?: number | null
|
|
931
|
+
swap?: string | null
|
|
932
|
+
threads?: number | null
|
|
957
933
|
tileCacheSize?: number | null
|
|
958
934
|
tileHeight?: number | null
|
|
959
935
|
tileWidth?: number | null
|
|
@@ -966,22 +942,15 @@ interface Config {
|
|
|
966
942
|
|
|
967
943
|
// Own properties of Gegl-0.3.Gegl.Config
|
|
968
944
|
|
|
969
|
-
application_license: string | null
|
|
970
945
|
applicationLicense: string | null
|
|
971
|
-
chunk_size: number
|
|
972
946
|
chunkSize: number
|
|
973
947
|
quality: number
|
|
974
|
-
queue_size: number
|
|
975
948
|
queueSize: number
|
|
976
949
|
swap: string | null
|
|
977
950
|
threads: number
|
|
978
|
-
tile_cache_size: number
|
|
979
951
|
tileCacheSize: number
|
|
980
|
-
tile_height: number
|
|
981
952
|
tileHeight: number
|
|
982
|
-
tile_width: number
|
|
983
953
|
tileWidth: number
|
|
984
|
-
use_opencl: boolean
|
|
985
954
|
useOpencl: boolean
|
|
986
955
|
|
|
987
956
|
// Class property signals of Gegl-0.3.Gegl.Config
|
|
@@ -1176,14 +1145,11 @@ module Node {
|
|
|
1176
1145
|
|
|
1177
1146
|
// Own constructor properties of Gegl-0.3.Gegl.Node
|
|
1178
1147
|
|
|
1179
|
-
|
|
1180
|
-
|
|
1148
|
+
dontCache?: boolean | null
|
|
1149
|
+
geglOperation?: Operation | null
|
|
1181
1150
|
name?: string | null
|
|
1182
1151
|
operation?: string | null
|
|
1183
1152
|
passthrough?: boolean | null
|
|
1184
|
-
use_opencl?: boolean | null
|
|
1185
|
-
dontCache?: boolean | null
|
|
1186
|
-
geglOperation?: Operation | null
|
|
1187
1153
|
useOpencl?: boolean | null
|
|
1188
1154
|
}
|
|
1189
1155
|
|
|
@@ -1193,14 +1159,11 @@ interface Node {
|
|
|
1193
1159
|
|
|
1194
1160
|
// Own properties of Gegl-0.3.Gegl.Node
|
|
1195
1161
|
|
|
1196
|
-
dont_cache: boolean
|
|
1197
1162
|
dontCache: boolean
|
|
1198
|
-
gegl_operation: Operation
|
|
1199
1163
|
geglOperation: Operation
|
|
1200
1164
|
name: string | null
|
|
1201
1165
|
operation: string | null
|
|
1202
1166
|
passthrough: boolean
|
|
1203
|
-
use_opencl: boolean
|
|
1204
1167
|
useOpencl: boolean
|
|
1205
1168
|
|
|
1206
1169
|
// Owm methods of Gegl-0.3.Gegl.Node
|
|
@@ -1965,23 +1928,14 @@ interface Stats {
|
|
|
1965
1928
|
|
|
1966
1929
|
// Own properties of Gegl-0.3.Gegl.Stats
|
|
1967
1930
|
|
|
1968
|
-
readonly swap_busy: boolean
|
|
1969
1931
|
readonly swapBusy: boolean
|
|
1970
|
-
readonly swap_file_size: number
|
|
1971
1932
|
readonly swapFileSize: number
|
|
1972
|
-
readonly swap_total: number
|
|
1973
1933
|
readonly swapTotal: number
|
|
1974
|
-
readonly tile_cache_hits: number
|
|
1975
1934
|
readonly tileCacheHits: number
|
|
1976
|
-
readonly tile_cache_misses: number
|
|
1977
1935
|
readonly tileCacheMisses: number
|
|
1978
|
-
readonly tile_cache_total: number
|
|
1979
1936
|
readonly tileCacheTotal: number
|
|
1980
|
-
readonly tile_cache_total_max: number
|
|
1981
1937
|
readonly tileCacheTotalMax: number
|
|
1982
|
-
readonly tile_cache_total_uncloned: number
|
|
1983
1938
|
readonly tileCacheTotalUncloned: number
|
|
1984
|
-
readonly zoom_total: number
|
|
1985
1939
|
readonly zoomTotal: number
|
|
1986
1940
|
|
|
1987
1941
|
// Class property signals of Gegl-0.3.Gegl.Stats
|
|
@@ -2040,11 +1994,8 @@ module TileBackend {
|
|
|
2040
1994
|
|
|
2041
1995
|
// Own constructor properties of Gegl-0.3.Gegl.TileBackend
|
|
2042
1996
|
|
|
2043
|
-
flush_on_destroy?: boolean | null
|
|
2044
|
-
format?: any | null
|
|
2045
|
-
tile_height?: number | null
|
|
2046
|
-
tile_width?: number | null
|
|
2047
1997
|
flushOnDestroy?: boolean | null
|
|
1998
|
+
format?: any | null
|
|
2048
1999
|
tileHeight?: number | null
|
|
2049
2000
|
tileWidth?: number | null
|
|
2050
2001
|
}
|
|
@@ -2055,16 +2006,11 @@ interface TileBackend {
|
|
|
2055
2006
|
|
|
2056
2007
|
// Own properties of Gegl-0.3.Gegl.TileBackend
|
|
2057
2008
|
|
|
2058
|
-
flush_on_destroy: boolean
|
|
2059
2009
|
flushOnDestroy: boolean
|
|
2060
2010
|
readonly format: any
|
|
2061
|
-
readonly px_size: number
|
|
2062
2011
|
readonly pxSize: number
|
|
2063
|
-
readonly tile_height: number
|
|
2064
2012
|
readonly tileHeight: number
|
|
2065
|
-
readonly tile_size: number
|
|
2066
2013
|
readonly tileSize: number
|
|
2067
|
-
readonly tile_width: number
|
|
2068
2014
|
readonly tileWidth: number
|
|
2069
2015
|
|
|
2070
2016
|
// Own fields of Gegl-0.3.Gegl.TileBackend
|
package/package.json
CHANGED
|
@@ -1,13 +1,19 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@girs/gegl-0.3",
|
|
3
|
-
"version": "0.3.35-3.2.
|
|
3
|
+
"version": "0.3.35-3.2.8",
|
|
4
4
|
"description": "GJS TypeScript type definitions for Gegl-0.3, generated from library version 0.3.35",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "gegl-0.3.js",
|
|
7
7
|
"main": "gegl-0.3.js",
|
|
8
8
|
"exports": {
|
|
9
|
-
"./ambient":
|
|
10
|
-
|
|
9
|
+
"./ambient": {
|
|
10
|
+
"types": "./gegl-0.3-ambient.d.ts",
|
|
11
|
+
"default": "./gegl-0.3-ambient.js"
|
|
12
|
+
},
|
|
13
|
+
"./import": {
|
|
14
|
+
"types": "./gegl-0.3-import.d.ts",
|
|
15
|
+
"default": "./gegl-0.3-import.js"
|
|
16
|
+
},
|
|
11
17
|
".": {
|
|
12
18
|
"import": {
|
|
13
19
|
"types": "./gegl-0.3.d.ts",
|
|
@@ -25,9 +31,9 @@
|
|
|
25
31
|
"test:cjs": "NODE_OPTIONS=--max_old_space_size=9216 tsc --noEmit gegl-0.3.d.cts"
|
|
26
32
|
},
|
|
27
33
|
"dependencies": {
|
|
28
|
-
"@girs/gjs": "^3.2.
|
|
29
|
-
"@girs/glib-2.0": "^2.
|
|
30
|
-
"@girs/gobject-2.0": "^2.
|
|
34
|
+
"@girs/gjs": "^3.2.8",
|
|
35
|
+
"@girs/glib-2.0": "^2.77.0-3.2.8",
|
|
36
|
+
"@girs/gobject-2.0": "^2.77.0-3.2.8"
|
|
31
37
|
},
|
|
32
38
|
"devDependencies": {
|
|
33
39
|
"typescript": "*"
|
|
@@ -44,7 +50,7 @@
|
|
|
44
50
|
"license": "MIT",
|
|
45
51
|
"repository": {
|
|
46
52
|
"type": "git",
|
|
47
|
-
"url": "git+https://github.com/gjsify/
|
|
53
|
+
"url": "git+https://github.com/gjsify/ts-for-gir.git"
|
|
48
54
|
},
|
|
49
55
|
"bugs": {
|
|
50
56
|
"url": "https://github.com/gjsify/ts-for-gir/issues"
|