mirror of
https://github.com/Rezmason/matrix.git
synced 2026-04-14 12:29:30 -07:00
Moving assets into a subdirectory.
This commit is contained in:
@@ -17,7 +17,7 @@
|
|||||||
- [Custom image (`url=www.website.com/picture.jpg`)](https://rezmason.github.io/matrix/?effect=image&url=https://upload.wikimedia.org/wikipedia/commons/f/f5/EagleRock.jpg)
|
- [Custom image (`url=www.website.com/picture.jpg`)](https://rezmason.github.io/matrix/?effect=image&url=https://upload.wikimedia.org/wikipedia/commons/f/f5/EagleRock.jpg)
|
||||||
- [Raw compute texture (`effect=none`) (_epilepsy warning_: lots of flickering)](https://rezmason.github.io/matrix/?effect=none)
|
- [Raw compute texture (`effect=none`) (_epilepsy warning_: lots of flickering)](https://rezmason.github.io/matrix/?effect=none)
|
||||||
|
|
||||||
- [The free font (TrueType).](https://github.com/Rezmason/matrix/raw/master/Matrix-Code.ttf)
|
- [The free font (TrueType).](https://github.com/Rezmason/matrix/raw/master/assets/Matrix-Code.ttf)
|
||||||
---
|
---
|
||||||
### about
|
### about
|
||||||
|
|
||||||
|
|||||||
17
TODO.txt
17
TODO.txt
@@ -2,8 +2,21 @@ TODO:
|
|||||||
|
|
||||||
WebGPU
|
WebGPU
|
||||||
First decent rainRender
|
First decent rainRender
|
||||||
vertex, fragment, with noise for
|
Port render pass 100%
|
||||||
data texture lookup with textureLoad
|
For now, use noise instead of the data texture
|
||||||
|
Get all the uniforms in
|
||||||
|
Categorize them into buffers
|
||||||
|
Port compute pass 100%
|
||||||
|
Compute entry point can live in the same wgsl file, I think
|
||||||
|
More uniforms! Categorize!
|
||||||
|
use textureLoad for texel access in render pipeline
|
||||||
|
Render target
|
||||||
|
Resize accordingly
|
||||||
|
Put in its own module
|
||||||
|
Blur: compute or render?
|
||||||
|
The other passes should be a breeze
|
||||||
|
Just add them to the render bundle
|
||||||
|
|
||||||
std140
|
std140
|
||||||
Document and share it
|
Document and share it
|
||||||
|
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 72 KiB After Width: | Height: | Size: 72 KiB |
|
Before Width: | Height: | Size: 45 KiB After Width: | Height: | Size: 45 KiB |
|
Before Width: | Height: | Size: 81 KiB After Width: | Height: | Size: 81 KiB |
@@ -1,19 +1,19 @@
|
|||||||
const fonts = {
|
const fonts = {
|
||||||
coptic: {
|
coptic: {
|
||||||
// The script the Gnostic codices were written in
|
// The script the Gnostic codices were written in
|
||||||
glyphTexURL: "coptic_msdf.png",
|
glyphTexURL: "assets/coptic_msdf.png",
|
||||||
glyphSequenceLength: 32,
|
glyphSequenceLength: 32,
|
||||||
glyphTextureColumns: 8,
|
glyphTextureColumns: 8,
|
||||||
},
|
},
|
||||||
gothic: {
|
gothic: {
|
||||||
// The script the Codex Argenteus was written in
|
// The script the Codex Argenteus was written in
|
||||||
glyphTexURL: "gothic_msdf.png",
|
glyphTexURL: "assets/gothic_msdf.png",
|
||||||
glyphSequenceLength: 27,
|
glyphSequenceLength: 27,
|
||||||
glyphTextureColumns: 8,
|
glyphTextureColumns: 8,
|
||||||
},
|
},
|
||||||
matrixcode: {
|
matrixcode: {
|
||||||
// The glyphs seen in the film trilogy
|
// The glyphs seen in the film trilogy
|
||||||
glyphTexURL: "matrixcode_msdf.png",
|
glyphTexURL: "assets/matrixcode_msdf.png",
|
||||||
glyphSequenceLength: 57,
|
glyphSequenceLength: 57,
|
||||||
glyphTextureColumns: 8,
|
glyphTextureColumns: 8,
|
||||||
},
|
},
|
||||||
|
|||||||
Reference in New Issue
Block a user