@thi.ng/webgl 6.9.9 → 6.9.10
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/CHANGELOG.md +1 -1
- package/package.json +25 -21
- package/textures/checkerboard.d.ts +1 -1
- package/textures/stripes.d.ts +1 -1
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/webgl",
|
|
3
|
-
"version": "6.9.
|
|
3
|
+
"version": "6.9.10",
|
|
4
4
|
"description": "WebGL & GLSL abstraction layer",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -40,28 +40,28 @@
|
|
|
40
40
|
"tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"@thi.ng/api": "^8.11.
|
|
44
|
-
"@thi.ng/canvas": "^0.
|
|
45
|
-
"@thi.ng/checks": "^3.6.
|
|
46
|
-
"@thi.ng/equiv": "^2.1.
|
|
47
|
-
"@thi.ng/errors": "^2.5.
|
|
48
|
-
"@thi.ng/logger": "^3.0.
|
|
49
|
-
"@thi.ng/matrices": "^2.4.
|
|
50
|
-
"@thi.ng/memoize": "^3.3.
|
|
51
|
-
"@thi.ng/object-utils": "^1.1.
|
|
52
|
-
"@thi.ng/pixel": "^7.
|
|
53
|
-
"@thi.ng/shader-ast": "^0.15.
|
|
54
|
-
"@thi.ng/shader-ast-glsl": "^0.4.
|
|
55
|
-
"@thi.ng/shader-ast-stdlib": "^0.18.
|
|
56
|
-
"@thi.ng/transducers": "^9.0.
|
|
57
|
-
"@thi.ng/vector-pools": "^3.2.
|
|
58
|
-
"@thi.ng/vectors": "^7.11.
|
|
43
|
+
"@thi.ng/api": "^8.11.8",
|
|
44
|
+
"@thi.ng/canvas": "^0.5.0",
|
|
45
|
+
"@thi.ng/checks": "^3.6.10",
|
|
46
|
+
"@thi.ng/equiv": "^2.1.64",
|
|
47
|
+
"@thi.ng/errors": "^2.5.14",
|
|
48
|
+
"@thi.ng/logger": "^3.0.18",
|
|
49
|
+
"@thi.ng/matrices": "^2.4.7",
|
|
50
|
+
"@thi.ng/memoize": "^3.3.10",
|
|
51
|
+
"@thi.ng/object-utils": "^1.1.1",
|
|
52
|
+
"@thi.ng/pixel": "^7.3.0",
|
|
53
|
+
"@thi.ng/shader-ast": "^0.15.24",
|
|
54
|
+
"@thi.ng/shader-ast-glsl": "^0.4.132",
|
|
55
|
+
"@thi.ng/shader-ast-stdlib": "^0.18.24",
|
|
56
|
+
"@thi.ng/transducers": "^9.0.13",
|
|
57
|
+
"@thi.ng/vector-pools": "^3.2.7",
|
|
58
|
+
"@thi.ng/vectors": "^7.11.7"
|
|
59
59
|
},
|
|
60
60
|
"devDependencies": {
|
|
61
|
-
"@microsoft/api-extractor": "^7.47.
|
|
61
|
+
"@microsoft/api-extractor": "^7.47.5",
|
|
62
62
|
"esbuild": "^0.23.0",
|
|
63
|
-
"typedoc": "^0.26.
|
|
64
|
-
"typescript": "^5.5.
|
|
63
|
+
"typedoc": "^0.26.5",
|
|
64
|
+
"typescript": "^5.5.4"
|
|
65
65
|
},
|
|
66
66
|
"keywords": [
|
|
67
67
|
"2d",
|
|
@@ -69,12 +69,16 @@
|
|
|
69
69
|
"animation",
|
|
70
70
|
"blend",
|
|
71
71
|
"browser",
|
|
72
|
+
"buffer",
|
|
72
73
|
"canvas",
|
|
73
74
|
"datastructure",
|
|
74
75
|
"declarative",
|
|
76
|
+
"fbo",
|
|
75
77
|
"glsl",
|
|
76
78
|
"gpgpu",
|
|
77
79
|
"graphics",
|
|
80
|
+
"multipass",
|
|
81
|
+
"pipeline",
|
|
78
82
|
"shader",
|
|
79
83
|
"shader-ast",
|
|
80
84
|
"texture",
|
|
@@ -220,5 +224,5 @@
|
|
|
220
224
|
],
|
|
221
225
|
"year": 2014
|
|
222
226
|
},
|
|
223
|
-
"gitHead": "
|
|
227
|
+
"gitHead": "ec78f98d015e4d214a0b840e72e497407807daf3\n"
|
|
224
228
|
}
|
|
@@ -5,5 +5,5 @@ export interface CheckerboardOpts {
|
|
|
5
5
|
corners: boolean;
|
|
6
6
|
cornerCols: number[];
|
|
7
7
|
}
|
|
8
|
-
export declare const checkerboard: (opts: Partial<CheckerboardOpts>) => HTMLCanvasElement
|
|
8
|
+
export declare const checkerboard: (opts: Partial<CheckerboardOpts>) => HTMLCanvasElement;
|
|
9
9
|
//# sourceMappingURL=checkerboard.d.ts.map
|
package/textures/stripes.d.ts
CHANGED
|
@@ -4,5 +4,5 @@ export interface StripeOpts {
|
|
|
4
4
|
col2: number;
|
|
5
5
|
horizontal: boolean;
|
|
6
6
|
}
|
|
7
|
-
export declare const stripes: (opts: Partial<StripeOpts>) => HTMLCanvasElement
|
|
7
|
+
export declare const stripes: (opts: Partial<StripeOpts>) => HTMLCanvasElement;
|
|
8
8
|
//# sourceMappingURL=stripes.d.ts.map
|