File tree Expand file tree Collapse file tree 2 files changed +0
-4
lines changed
CountingSort/app_resources Expand file tree Collapse file tree 2 files changed +0
-4
lines changed Original file line number Diff line number Diff line change @@ -70,8 +70,6 @@ uint32_t3 nbl::hlsl::glsl::gl_WorkGroupSize()
70
70
void main (uint32_t3 ID : SV_GroupThreadID , uint32_t3 GroupID : SV_GroupID )
71
71
{
72
72
nbl::hlsl::sort::CountingParameters < uint32_t > params;
73
- params.workgroupSize = WorkgroupSize;
74
- params.bucketCount = BucketCount;
75
73
params.dataElementCount = pushData.dataElementCount;
76
74
params.elementsPerWT = pushData.elementsPerWT;
77
75
params.minimum = pushData.minimum;
Original file line number Diff line number Diff line change @@ -98,8 +98,6 @@ uint32_t3 nbl::hlsl::glsl::gl_WorkGroupSize()
98
98
void main (uint32_t3 ID : SV_GroupThreadID , uint32_t3 GroupID : SV_GroupID )
99
99
{
100
100
nbl::hlsl::sort::CountingParameters < uint32_t > params;
101
- params.workgroupSize = WorkgroupSize;
102
- params.bucketCount = BucketCount;
103
101
params.dataElementCount = pushData.dataElementCount;
104
102
params.elementsPerWT = pushData.elementsPerWT;
105
103
params.minimum = pushData.minimum;
You can’t perform that action at this time.
0 commit comments