diff options
author | metamuffin <metamuffin@disroot.org> | 2024-05-04 23:38:11 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2024-05-04 23:38:11 +0200 |
commit | 2b30206e06a271021dc13128464c8b622685e2e4 (patch) | |
tree | f65b2df26a86405db72153a83966233ff792f84c /flowy/src/motion/debug.rs | |
parent | 330cbef6f1953de3e1cbeb5aed03e951bc101965 (diff) | |
download | video-codec-experiments-2b30206e06a271021dc13128464c8b622685e2e4.tar video-codec-experiments-2b30206e06a271021dc13128464c8b622685e2e4.tar.bz2 video-codec-experiments-2b30206e06a271021dc13128464c8b622685e2e4.tar.zst |
a
Diffstat (limited to 'flowy/src/motion/debug.rs')
-rw-r--r-- | flowy/src/motion/debug.rs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/flowy/src/motion/debug.rs b/flowy/src/motion/debug.rs index 9029b87..5e5f4ee 100644 --- a/flowy/src/motion/debug.rs +++ b/flowy/src/motion/debug.rs @@ -4,8 +4,8 @@ use std::mem::size_of; use wgpu::{ include_wgsl, BindGroup, BindGroupDescriptor, BindGroupEntry, BindGroupLayoutDescriptor, BindGroupLayoutEntry, BindingType, Buffer, BufferDescriptor, BufferUsages, CommandEncoder, - ComputePipeline, ComputePipelineDescriptor, Device, PipelineLayoutDescriptor, Queue, - ShaderStages, TextureSampleType, TextureViewDimension, + ComputePipeline, ComputePipelineDescriptor, Device, PipelineCompilationOptions, + PipelineLayoutDescriptor, Queue, ShaderStages, TextureSampleType, TextureViewDimension, }; pub struct MotionDebugger { @@ -145,6 +145,7 @@ impl MotionDebugger { layout: Some(&pipeline_layout), module: &module, entry_point: "main", + compilation_options: PipelineCompilationOptions::default(), }); Self { |