File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
28_FFTBloom/app_resources Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -130,7 +130,7 @@ struct PreloadedSecondAxisAccessor : PreloadedAccessorMirrorTradeBase
130130 {
131131 if (glsl::gl_WorkGroupID ().x)
132132 {
133- const uint32_t y = bitReverseAs<uint32_t, NumWorkgroupsLog2 >(glsl::gl_WorkGroupID ().x);
133+ const uint32_t y = bitReverseAs<uint32_t>(glsl::gl_WorkGroupID ().x, NumWorkgroupsLog2 );
134134 uint32_t globalElementIndex = workgroup::SubgroupContiguousIndex ();
135135 [unroll]
136136 for (uint32_t localElementIndex = 0 ; localElementIndex < ElementsPerInvocation; localElementIndex++)
Original file line number Diff line number Diff line change @@ -132,7 +132,7 @@ struct PreloadedSecondAxisAccessor : MultiChannelPreloadedAccessorMirrorTradeBas
132132 // the element in the DFT with `x = F(x')` and `y = bitreverse(y')`
133133 if (glsl::gl_WorkGroupID ().x)
134134 {
135- const uint32_t y = bitReverseAs<uint32_t, NumWorkgroupsLog2 >(glsl::gl_WorkGroupID ().x);
135+ const uint32_t y = bitReverseAs<uint32_t>(glsl::gl_WorkGroupID ().x, NumWorkgroupsLog2 );
136136 [unroll]
137137 for (uint16_t channel = 0 ; channel < Channels; channel++)
138138 {
You can’t perform that action at this time.
0 commit comments