File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -274,13 +274,13 @@ VkPipeline Context::get_shader_pipeline(
274
274
VkPipelineLayout pipeline_layout =
275
275
pipeline_layout_cache ().retrieve (shader_layout, push_constants_size);
276
276
277
- vkapi::SpecVarList spec_constants_full_list = {4u , 4u , 1u };
278
- spec_constants_full_list.append (spec_constants);
277
+ const utils::WorkgroupSize local_workgroup_size (4u , 4u , 1u );
279
278
280
279
VkPipeline pipeline = pipeline_cache ().retrieve (
281
280
{pipeline_layout,
282
281
shader_cache ().retrieve (shader),
283
- spec_constants_full_list});
282
+ spec_constants,
283
+ local_workgroup_size});
284
284
285
285
return pipeline;
286
286
}
Original file line number Diff line number Diff line change @@ -274,6 +274,7 @@ std::string Adapter::stringize() const {
274
274
PRINT_PROP (limits, maxImageDimension1D);
275
275
PRINT_PROP (limits, maxImageDimension2D);
276
276
PRINT_PROP (limits, maxImageDimension3D);
277
+ PRINT_PROP (limits, maxStorageBufferRange);
277
278
PRINT_PROP (limits, maxTexelBufferElements);
278
279
PRINT_PROP (limits, maxPushConstantsSize);
279
280
PRINT_PROP (limits, maxMemoryAllocationCount);
You can’t perform that action at this time.
0 commit comments