We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 01b8d96 commit 1a5a5dfCopy full SHA for 1a5a5df
benches/benches/computepass.rs
@@ -56,7 +56,9 @@ impl ComputepassState {
56
| wgpu::Features::TEXTURE_BINDING_ARRAY
57
| wgpu::Features::STORAGE_RESOURCE_BINDING_ARRAY
58
| wgpu::Features::SAMPLED_TEXTURE_AND_STORAGE_BUFFER_ARRAY_NON_UNIFORM_INDEXING,
59
- );
+ )
60
+ // TODO: as of writing llvmpipe segfaults the bindless benchmark on ci
61
+ && device_state.adapter_info.driver != "llvmpipe";
62
63
// Performance gets considerably worse if the resources are shuffled.
64
//
0 commit comments