aboutsummaryrefslogtreecommitdiff
path: root/flowy/src/motion/debug.wgsl
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2023-11-18 17:37:57 +0100
committermetamuffin <metamuffin@disroot.org>2023-11-18 17:37:57 +0100
commit754ebf34cbb6280ef77421e1ca54d35d727dc6f7 (patch)
tree00548d19aafdcf34bda914b0c8c15654b720ac7a /flowy/src/motion/debug.wgsl
parentcdb9a3afabe7a239a08c640b19242ff9b1e3b051 (diff)
downloadvideo-codec-experiments-754ebf34cbb6280ef77421e1ca54d35d727dc6f7.tar
video-codec-experiments-754ebf34cbb6280ef77421e1ca54d35d727dc6f7.tar.bz2
video-codec-experiments-754ebf34cbb6280ef77421e1ca54d35d727dc6f7.tar.zst
debug and better search
Diffstat (limited to 'flowy/src/motion/debug.wgsl')
-rw-r--r--flowy/src/motion/debug.wgsl2
1 files changed, 1 insertions, 1 deletions
diff --git a/flowy/src/motion/debug.wgsl b/flowy/src/motion/debug.wgsl
index 3e740f6..7da5c57 100644
--- a/flowy/src/motion/debug.wgsl
+++ b/flowy/src/motion/debug.wgsl
@@ -25,7 +25,7 @@ struct BlockOffset {
for (var x = 0; x < params.block_size.x; x++) {
for (var y = 0; y < params.block_size.y; y++) {
let base = uv + vec2(x, y);
- let col = vec4(colormap_vec(vec2<f32>(bl.offset) * 0.05),1.);
+ let col = vec4(colormap_vec(vec2<f32>(bl.offset) * 0.08),1.);
textureStore(out, base, col);
}
}