@thi.ng/webgl 6.9.113 → 6.9.115
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/buffer.d.ts +1 -1
- package/package.json +19 -19
package/README.md
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
|
|
9
9
|
> [!NOTE]
|
|
10
10
|
|
|
11
|
-
> This is one of
|
|
11
|
+
> This is one of 216 standalone projects. LLM-free, human-made and
|
|
12
12
|
> cared for software, maintained as part of the
|
|
13
13
|
> [@thi.ng/umbrella](https://codeberg.org/thi.ng/umbrella/) ecosystem and
|
|
14
14
|
> anti-framework.
|
package/buffer.d.ts
CHANGED
|
@@ -24,7 +24,7 @@ export declare class WebGLArrayBuffer<T extends TypedArray> implements IWebGLBuf
|
|
|
24
24
|
set(data: T, mode?: number): void;
|
|
25
25
|
setChunk(data: T, byteOffset?: number): void;
|
|
26
26
|
}
|
|
27
|
-
export declare const defBuffer: (gl: WebGLRenderingContext, data?: TypedArray, target?: GLenum, mode?: GLenum, retain?: boolean) => WebGLArrayBuffer<
|
|
27
|
+
export declare const defBuffer: (gl: WebGLRenderingContext, data?: TypedArray, target?: GLenum, mode?: GLenum, retain?: boolean) => WebGLArrayBuffer<Float32Array<ArrayBufferLike> | Float64Array<ArrayBufferLike> | Int8Array<ArrayBufferLike> | Int16Array<ArrayBufferLike> | Int32Array<ArrayBufferLike> | Uint8Array<ArrayBufferLike> | Uint8ClampedArray<ArrayBufferLike> | Uint16Array<ArrayBufferLike> | Uint32Array<ArrayBufferLike>>;
|
|
28
28
|
/**
|
|
29
29
|
* Takes a model spec (or array of specs) and compiles all buffers (attributes,
|
|
30
30
|
* indices) and shaders (if not already compiled), then returns compiled spec(s),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/webgl",
|
|
3
|
-
"version": "6.9.
|
|
3
|
+
"version": "6.9.115",
|
|
4
4
|
"description": "WebGL & GLSL abstraction layer",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -44,25 +44,25 @@
|
|
|
44
44
|
"tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
|
|
45
45
|
},
|
|
46
46
|
"dependencies": {
|
|
47
|
-
"@thi.ng/api": "^8.12.
|
|
48
|
-
"@thi.ng/canvas": "^1.1.
|
|
49
|
-
"@thi.ng/checks": "^3.
|
|
50
|
-
"@thi.ng/equiv": "^2.1.
|
|
51
|
-
"@thi.ng/errors": "^2.6.
|
|
52
|
-
"@thi.ng/logger": "^3.3.
|
|
53
|
-
"@thi.ng/matrices": "^3.0.
|
|
54
|
-
"@thi.ng/memoize": "^4.0.
|
|
55
|
-
"@thi.ng/object-utils": "^1.3.
|
|
56
|
-
"@thi.ng/pixel": "^7.5.
|
|
57
|
-
"@thi.ng/shader-ast": "^1.1.
|
|
58
|
-
"@thi.ng/shader-ast-glsl": "^1.0.
|
|
59
|
-
"@thi.ng/shader-ast-stdlib": "^1.0.
|
|
60
|
-
"@thi.ng/transducers": "^9.6.
|
|
61
|
-
"@thi.ng/vector-pools": "^3.2.
|
|
62
|
-
"@thi.ng/vectors": "^8.6.
|
|
47
|
+
"@thi.ng/api": "^8.12.27",
|
|
48
|
+
"@thi.ng/canvas": "^1.1.19",
|
|
49
|
+
"@thi.ng/checks": "^3.10.1",
|
|
50
|
+
"@thi.ng/equiv": "^2.1.116",
|
|
51
|
+
"@thi.ng/errors": "^2.6.16",
|
|
52
|
+
"@thi.ng/logger": "^3.3.10",
|
|
53
|
+
"@thi.ng/matrices": "^3.0.52",
|
|
54
|
+
"@thi.ng/memoize": "^4.0.51",
|
|
55
|
+
"@thi.ng/object-utils": "^1.3.19",
|
|
56
|
+
"@thi.ng/pixel": "^7.5.36",
|
|
57
|
+
"@thi.ng/shader-ast": "^1.1.55",
|
|
58
|
+
"@thi.ng/shader-ast-glsl": "^1.0.74",
|
|
59
|
+
"@thi.ng/shader-ast-stdlib": "^1.0.74",
|
|
60
|
+
"@thi.ng/transducers": "^9.6.41",
|
|
61
|
+
"@thi.ng/vector-pools": "^3.2.105",
|
|
62
|
+
"@thi.ng/vectors": "^8.6.37"
|
|
63
63
|
},
|
|
64
64
|
"devDependencies": {
|
|
65
|
-
"esbuild": "^0.28.
|
|
65
|
+
"esbuild": "^0.28.1",
|
|
66
66
|
"typedoc": "^0.28.19",
|
|
67
67
|
"typescript": "^6.0.3"
|
|
68
68
|
},
|
|
@@ -228,5 +228,5 @@
|
|
|
228
228
|
],
|
|
229
229
|
"year": 2014
|
|
230
230
|
},
|
|
231
|
-
"gitHead": "
|
|
231
|
+
"gitHead": "febee81fd8b59e5e330a6e6521a2667ed5401a3d"
|
|
232
232
|
}
|