@thi.ng/webgl 6.9.25 → 6.9.27
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/buffer.d.ts +1 -1
- package/package.json +21 -21
package/CHANGELOG.md
CHANGED
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<Float32Array | Float64Array | Int8Array | Int16Array | Int32Array | Uint8Array | Uint8ClampedArray | Uint16Array | Uint32Array
|
|
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 and compiles all buffers (attributes, indices) and shader
|
|
30
30
|
* (if not already compiled), then returns compiled spec, ready for use with
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/webgl",
|
|
3
|
-
"version": "6.9.
|
|
3
|
+
"version": "6.9.27",
|
|
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.5.
|
|
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": "^4.0.
|
|
51
|
-
"@thi.ng/object-utils": "^1.1.
|
|
52
|
-
"@thi.ng/pixel": "^7.3.
|
|
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.2.
|
|
57
|
-
"@thi.ng/vector-pools": "^3.2.
|
|
58
|
-
"@thi.ng/vectors": "^7.12.
|
|
43
|
+
"@thi.ng/api": "^8.11.14",
|
|
44
|
+
"@thi.ng/canvas": "^0.5.7",
|
|
45
|
+
"@thi.ng/checks": "^3.6.16",
|
|
46
|
+
"@thi.ng/equiv": "^2.1.70",
|
|
47
|
+
"@thi.ng/errors": "^2.5.20",
|
|
48
|
+
"@thi.ng/logger": "^3.0.24",
|
|
49
|
+
"@thi.ng/matrices": "^2.4.23",
|
|
50
|
+
"@thi.ng/memoize": "^4.0.4",
|
|
51
|
+
"@thi.ng/object-utils": "^1.1.7",
|
|
52
|
+
"@thi.ng/pixel": "^7.3.9",
|
|
53
|
+
"@thi.ng/shader-ast": "^0.15.37",
|
|
54
|
+
"@thi.ng/shader-ast-glsl": "^0.4.145",
|
|
55
|
+
"@thi.ng/shader-ast-stdlib": "^0.18.37",
|
|
56
|
+
"@thi.ng/transducers": "^9.2.10",
|
|
57
|
+
"@thi.ng/vector-pools": "^3.2.23",
|
|
58
|
+
"@thi.ng/vectors": "^7.12.11"
|
|
59
59
|
},
|
|
60
60
|
"devDependencies": {
|
|
61
|
-
"@microsoft/api-extractor": "^7.
|
|
61
|
+
"@microsoft/api-extractor": "^7.48.0",
|
|
62
62
|
"esbuild": "^0.24.0",
|
|
63
|
-
"typedoc": "^0.
|
|
64
|
-
"typescript": "^5.
|
|
63
|
+
"typedoc": "^0.27.4",
|
|
64
|
+
"typescript": "^5.7.2"
|
|
65
65
|
},
|
|
66
66
|
"keywords": [
|
|
67
67
|
"2d",
|
|
@@ -225,5 +225,5 @@
|
|
|
225
225
|
],
|
|
226
226
|
"year": 2014
|
|
227
227
|
},
|
|
228
|
-
"gitHead": "
|
|
228
|
+
"gitHead": "34ac95538d96f046090fef5fd3a1dc36d54663d5\n"
|
|
229
229
|
}
|