aboutsummaryrefslogtreecommitdiff
path: root/flowy/src/motion/dec.wgsl
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2023-11-18 14:49:17 +0100
committermetamuffin <metamuffin@disroot.org>2023-11-18 14:49:17 +0100
commitcdb9a3afabe7a239a08c640b19242ff9b1e3b051 (patch)
tree4903a248c588ce350feb74640ded3335e1721915 /flowy/src/motion/dec.wgsl
parent14051d7470d7662430694f0752d00483b52e1278 (diff)
downloadvideo-codec-experiments-cdb9a3afabe7a239a08c640b19242ff9b1e3b051.tar
video-codec-experiments-cdb9a3afabe7a239a08c640b19242ff9b1e3b051.tar.bz2
video-codec-experiments-cdb9a3afabe7a239a08c640b19242ff9b1e3b051.tar.zst
debug view
Diffstat (limited to 'flowy/src/motion/dec.wgsl')
-rw-r--r--flowy/src/motion/dec.wgsl2
1 files changed, 1 insertions, 1 deletions
diff --git a/flowy/src/motion/dec.wgsl b/flowy/src/motion/dec.wgsl
index 2fa3f3b..f4db974 100644
--- a/flowy/src/motion/dec.wgsl
+++ b/flowy/src/motion/dec.wgsl
@@ -12,7 +12,7 @@ struct BlockOffset {
@group(0) @binding(0) var<uniform> params: Params;
@group(0) @binding(1) var<storage, read> offsets: array<BlockOffset>;
-@group(0) @binding(2) var next: texture_storage_2d<bgra8unorm, write>;
+@group(0) @binding(2) var next: texture_storage_2d<rgba8unorm, write>;
@group(0) @binding(3) var prev: texture_2d<f32>;
@compute @workgroup_size(1) fn main(@builtin(global_invocation_id) global_id: vec3<u32>) {