Skip to content

Commit 258de81

Browse files
committed
Remove missing params
1 parent b00e75c commit 258de81

File tree

2 files changed

+0
-4
lines changed

2 files changed

+0
-4
lines changed

CountingSort/app_resources/prefix_sum_shader.comp.hlsl

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,6 @@ uint32_t3 nbl::hlsl::glsl::gl_WorkGroupSize()
7070
void main(uint32_t3 ID : SV_GroupThreadID, uint32_t3 GroupID : SV_GroupID)
7171
{
7272
nbl::hlsl::sort::CountingParameters < uint32_t > params;
73-
params.workgroupSize = WorkgroupSize;
74-
params.bucketCount = BucketCount;
7573
params.dataElementCount = pushData.dataElementCount;
7674
params.elementsPerWT = pushData.elementsPerWT;
7775
params.minimum = pushData.minimum;

CountingSort/app_resources/scatter_shader.comp.hlsl

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,8 +98,6 @@ uint32_t3 nbl::hlsl::glsl::gl_WorkGroupSize()
9898
void main(uint32_t3 ID : SV_GroupThreadID, uint32_t3 GroupID : SV_GroupID)
9999
{
100100
nbl::hlsl::sort::CountingParameters < uint32_t > params;
101-
params.workgroupSize = WorkgroupSize;
102-
params.bucketCount = BucketCount;
103101
params.dataElementCount = pushData.dataElementCount;
104102
params.elementsPerWT = pushData.elementsPerWT;
105103
params.minimum = pushData.minimum;

0 commit comments

Comments
 (0)