@thi.ng/webgl 6.2.2 → 6.2.4

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.
Files changed (3) hide show
  1. package/CHANGELOG.md +1 -1
  2. package/README.md +9 -8
  3. package/package.json +21 -21
package/CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Change Log
2
2
 
3
- - **Last updated**: 2022-08-08T22:36:17Z
3
+ - **Last updated**: 2022-09-21T21:37:59Z
4
4
  - **Generator**: [thi.ng/monopub](https://thi.ng/monopub)
5
5
 
6
6
  All notable changes to this project will be documented in this file.
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  <!-- This file is generated - DO NOT EDIT! -->
2
2
 
3
- # ![webgl](https://media.thi.ng/umbrella/banners/thing-webgl.svg?f932e39b)
3
+ # ![webgl](https://media.thi.ng/umbrella/banners-20220914/thing-webgl.svg?bdeaeb45)
4
4
 
5
5
  [![npm version](https://img.shields.io/npm/v/@thi.ng/webgl.svg)](https://www.npmjs.com/package/@thi.ng/webgl)
6
6
  ![npm downloads](https://img.shields.io/npm/dm/@thi.ng/webgl.svg)
@@ -11,9 +11,9 @@ This project is part of the
11
11
 
12
12
  - [About](#about)
13
13
  - [Features](#features)
14
- - [Status](#status)
15
- - [Support packages](#support-packages)
16
- - [Related packages](#related-packages)
14
+ - [Status](#status)
15
+ - [Support packages](#support-packages)
16
+ - [Related packages](#related-packages)
17
17
  - [Installation](#installation)
18
18
  - [Dependencies](#dependencies)
19
19
  - [Usage examples](#usage-examples)
@@ -55,18 +55,18 @@ Largely declarative WebGL 1.0 / 2.0 abstraction layer, partially ported
55
55
  - WebGL extension helpers & semi-automatic extension enabling
56
56
  - WebGL canvas creation / setup
57
57
 
58
- ### Status
58
+ ## Status
59
59
 
60
60
  **STABLE** - used in production
61
61
 
62
62
  [Search or submit any issues for this package](https://github.com/thi-ng/umbrella/issues?q=%5Bwebgl%5D+in%3Atitle)
63
63
 
64
- ### Support packages
64
+ ## Support packages
65
65
 
66
66
  - [@thi.ng/webgl-msdf](https://github.com/thi-ng/umbrella/tree/develop/packages/webgl-msdf) - Multi-channel SDF font rendering & basic text layout for WebGL
67
67
  - [@thi.ng/webgl-shadertoy](https://github.com/thi-ng/umbrella/tree/develop/packages/webgl-shadertoy) - Basic WebGL scaffolding for running interactive fragment shaders via [@thi.ng/shader-ast](https://github.com/thi-ng/umbrella/tree/develop/packages/shader-ast)
68
68
 
69
- ### Related packages
69
+ ## Related packages
70
70
 
71
71
  - [@thi.ng/ecs](https://github.com/thi-ng/umbrella/tree/develop/packages/ecs) - Entity Component System based around typed arrays & sparse sets
72
72
  - [@thi.ng/geom](https://github.com/thi-ng/umbrella/tree/develop/packages/geom) - Functional, polymorphic API for 2D geometry types & SVG generation
@@ -100,7 +100,7 @@ node --experimental-repl-await
100
100
  > const webgl = await import("@thi.ng/webgl");
101
101
  ```
102
102
 
103
- Package sizes (gzipped, pre-treeshake): ESM: 12.23 KB
103
+ Package sizes (gzipped, pre-treeshake): ESM: 12.46 KB
104
104
 
105
105
  ## Dependencies
106
106
 
@@ -138,6 +138,7 @@ A selection:
138
138
  | <img src="https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/examples/shader-ast-tunnel.jpg" width="240"/> | WebGL & Canvas2D textured tunnel shader | [Demo](https://demo.thi.ng/umbrella/shader-ast-tunnel/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/shader-ast-tunnel) |
139
139
  | <img src="https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/examples/shader-graph.jpg" width="240"/> | Minimal shader graph developed during livestream #2 | [Demo](https://demo.thi.ng/umbrella/shader-graph/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/shader-graph) |
140
140
  | <img src="https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/examples/soa-ecs-100k.png" width="240"/> | Entity Component System w/ 100k 3D particles | [Demo](https://demo.thi.ng/umbrella/soa-ecs/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/soa-ecs) |
141
+ | <img src="https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/examples/webgl-channel-mixer.jpg" width="240"/> | rdom & WebGL-based image channel editor | [Demo](https://demo.thi.ng/umbrella/webgl-channel-mixer/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/webgl-channel-mixer) |
141
142
  | <img src="https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/examples/webgl-cube.png" width="240"/> | WebGL multi-colored cube mesh | [Demo](https://demo.thi.ng/umbrella/webgl-cube/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/webgl-cube) |
142
143
  | <img src="https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/examples/webgl-cubemap.jpg" width="240"/> | WebGL cube maps with async texture loading | [Demo](https://demo.thi.ng/umbrella/webgl-cubemap/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/webgl-cubemap) |
143
144
  | <img src="https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/examples/webgl-float-fbo.jpg" width="240"/> | Drawing to floating point offscreen / multi-pass shader pipeline | [Demo](https://demo.thi.ng/umbrella/webgl-float-fbo/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/webgl-float-fbo) |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/webgl",
3
- "version": "6.2.2",
3
+ "version": "6.2.4",
4
4
  "description": "WebGL & GLSL abstraction layer",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -34,30 +34,30 @@
34
34
  "test": "testament test"
35
35
  },
36
36
  "dependencies": {
37
- "@thi.ng/adapt-dpi": "^2.1.9",
38
- "@thi.ng/api": "^8.4.0",
39
- "@thi.ng/associative": "^6.2.5",
40
- "@thi.ng/checks": "^3.2.4",
41
- "@thi.ng/equiv": "^2.1.9",
42
- "@thi.ng/errors": "^2.1.10",
43
- "@thi.ng/logger": "^1.2.0",
44
- "@thi.ng/matrices": "^2.1.22",
45
- "@thi.ng/memoize": "^3.1.10",
46
- "@thi.ng/pixel": "^3.4.12",
47
- "@thi.ng/shader-ast": "^0.12.18",
48
- "@thi.ng/shader-ast-glsl": "^0.4.18",
49
- "@thi.ng/shader-ast-stdlib": "^0.12.11",
50
- "@thi.ng/transducers": "^8.3.12",
51
- "@thi.ng/vector-pools": "^3.1.22",
52
- "@thi.ng/vectors": "^7.5.13"
37
+ "@thi.ng/adapt-dpi": "^2.1.10",
38
+ "@thi.ng/api": "^8.4.2",
39
+ "@thi.ng/associative": "^6.2.7",
40
+ "@thi.ng/checks": "^3.2.5",
41
+ "@thi.ng/equiv": "^2.1.10",
42
+ "@thi.ng/errors": "^2.2.0",
43
+ "@thi.ng/logger": "^1.3.0",
44
+ "@thi.ng/matrices": "^2.1.24",
45
+ "@thi.ng/memoize": "^3.1.12",
46
+ "@thi.ng/pixel": "^3.4.14",
47
+ "@thi.ng/shader-ast": "^0.12.20",
48
+ "@thi.ng/shader-ast-glsl": "^0.4.20",
49
+ "@thi.ng/shader-ast-stdlib": "^0.12.13",
50
+ "@thi.ng/transducers": "^8.3.14",
51
+ "@thi.ng/vector-pools": "^3.1.24",
52
+ "@thi.ng/vectors": "^7.5.15"
53
53
  },
54
54
  "devDependencies": {
55
- "@microsoft/api-extractor": "^7.25.0",
56
- "@thi.ng/testament": "^0.2.11",
55
+ "@microsoft/api-extractor": "^7.31.1",
56
+ "@thi.ng/testament": "^0.3.0",
57
57
  "rimraf": "^3.0.2",
58
58
  "tools": "^0.0.1",
59
59
  "typedoc": "^0.22.17",
60
- "typescript": "^4.7.4"
60
+ "typescript": "^4.8.3"
61
61
  },
62
62
  "keywords": [
63
63
  "2d",
@@ -215,5 +215,5 @@
215
215
  ],
216
216
  "year": 2014
217
217
  },
218
- "gitHead": "4383dd462ecbafabbb7ae7ba567e3b3738abb9ab\n"
218
+ "gitHead": "973139c5aa3b50081020f4cc726a7cc330f77fc7\n"
219
219
  }