@@ -815,7 +815,6 @@ fn map_wgt_limits(limits: webgpu_sys::GpuSupportedLimits) -> wgt::Limits {
815
815
max_vertex_buffer_array_stride : limits. max_vertex_buffer_array_stride ( ) ,
816
816
min_uniform_buffer_offset_alignment : limits. min_uniform_buffer_offset_alignment ( ) ,
817
817
min_storage_buffer_offset_alignment : limits. min_storage_buffer_offset_alignment ( ) ,
818
- max_inter_stage_shader_components : limits. max_inter_stage_shader_components ( ) ,
819
818
max_color_attachments : limits. max_color_attachments ( ) ,
820
819
max_color_attachment_bytes_per_sample : limits. max_color_attachment_bytes_per_sample ( ) ,
821
820
max_compute_workgroup_storage_size : limits. max_compute_workgroup_storage_size ( ) ,
@@ -829,6 +828,7 @@ fn map_wgt_limits(limits: webgpu_sys::GpuSupportedLimits) -> wgt::Limits {
829
828
max_subgroup_size : wgt:: Limits :: default ( ) . max_subgroup_size ,
830
829
max_push_constant_size : wgt:: Limits :: default ( ) . max_push_constant_size ,
831
830
max_non_sampler_bindings : wgt:: Limits :: default ( ) . max_non_sampler_bindings ,
831
+ max_inter_stage_shader_components : wgt:: Limits :: default ( ) . max_inter_stage_shader_components ,
832
832
}
833
833
}
834
834
@@ -875,7 +875,6 @@ fn map_js_sys_limits(limits: &wgt::Limits) -> js_sys::Object {
875
875
( maxBufferSize, max_buffer_size) ,
876
876
( maxVertexAttributes, max_vertex_attributes) ,
877
877
( maxVertexBufferArrayStride, max_vertex_buffer_array_stride) ,
878
- ( maxInterStageShaderComponents, max_inter_stage_shader_components) ,
879
878
( maxComputeWorkgroupStorageSize, max_compute_workgroup_storage_size) ,
880
879
( maxComputeInvocationsPerWorkgroup, max_compute_invocations_per_workgroup) ,
881
880
( maxComputeWorkgroupSizeX, max_compute_workgroup_size_x) ,
0 commit comments