Skip to content

Commit

Permalink
Re-add indirect execution to vulkan downlevel flags (#3319)
Browse files Browse the repository at this point in the history
Closes #3318
  • Loading branch information
cwfitzgerald authored Dec 20, 2022
1 parent 6b6bc69 commit 4c5fef4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion wgpu-hal/src/vulkan/adapter.rs
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,8 @@ impl PhysicalDeviceFeatures {
| Df::DEPTH_TEXTURE_AND_BUFFER_COPIES
| Df::WEBGPU_TEXTURE_FORMAT_SUPPORT
| Df::BUFFER_BINDINGS_NOT_16_BYTE_ALIGNED
| Df::UNRESTRICTED_INDEX_BUFFER;
| Df::UNRESTRICTED_INDEX_BUFFER
| Df::INDIRECT_EXECUTION;

dl_flags.set(Df::CUBE_ARRAY_TEXTURES, self.core.image_cube_array != 0);
dl_flags.set(Df::ANISOTROPIC_FILTERING, self.core.sampler_anisotropy != 0);
Expand Down

0 comments on commit 4c5fef4

Please sign in to comment.