@footgun/cobalt 0.5.0 → 0.6.0
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 +7 -0
- package/bundle.js +14486 -16
- package/esbuild.js +1 -1
- package/examples/02-sprites/index.html +1 -1
- package/examples/03-tiles/index.html +1 -1
- package/examples/05-bloom/index.html +1 -1
- package/examples/06-displacement/index.html +1 -1
- package/examples/08-light/index.html +1 -1
- package/examples/09-sdl-polar-meters/package.json +1 -1
- package/package.json +1 -1
- package/packages/graph-editor/.vercel/README.txt +11 -0
- package/packages/graph-editor/.vercel/project.json +1 -0
- package/src/cobalt.js +0 -8
- package/src/displacement/displacement.js +2 -1
- package/src/fb-blit/fb-blit.js +5 -4
- package/src/fb-texture/fb-texture.js +5 -2
- package/src/get-preferred-format.js +7 -0
- package/src/overlay/overlay.js +3 -2
- package/src/primitives/primitives.js +4 -2
- package/src/scene-composite/scene-composite.js +4 -3
- package/src/sprite/spritesheet.js +1 -1
- package/src/tile/atlas.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
# 0.6.0
|
|
2
|
+
* use preferred canvas format in various places instead of hardcoding to bgra8unorm, which doesn't seem to work on linux
|
|
3
|
+
because that defaults to bgra8unorm-srgb
|
|
4
|
+
|
|
5
|
+
# 0.5.1
|
|
6
|
+
* add labels to all render pipelines
|
|
7
|
+
|
|
1
8
|
# 0.5.0
|
|
2
9
|
* resize the primitives vertexBuffer to use memory more conservatively
|
|
3
10
|
|