We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 17e3efa commit 9de7bd4Copy full SHA for 9de7bd4
crates/bevy_render/src/batching/gpu_preprocessing.rs
@@ -1107,7 +1107,8 @@ impl FromWorld for GpuPreprocessingSupport {
1107
DownlevelFlags::VERTEX_AND_INSTANCE_INDEX_RESPECTS_RESPECTIVE_FIRST_VALUE_IN_INDIRECT_DRAW
1108
);
1109
1110
- let max_supported_mode = if device.limits().max_compute_workgroup_size_x == 0
+ let max_supported_mode = if !feature_support
1111
+ || device.limits().max_compute_workgroup_size_x == 0
1112
|| is_non_supported_android_device(adapter)
1113
{
1114
GpuPreprocessingMode::None
0 commit comments