We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8787944 commit 6bfae7cCopy full SHA for 6bfae7c
include/nbl/builtin/glsl/workgroup/ballot.glsl
@@ -70,6 +70,7 @@ bool nbl_glsl_workgroupBallotBitExtract_noEndBarriers(in uint index)
70
}
71
bool nbl_glsl_workgroupBallotBitExtract(in uint index)
72
{
73
+ barrier();
74
const bool retval = nbl_glsl_workgroupBallotBitExtract_noEndBarriers(index);
75
barrier();
76
return retval;
@@ -101,6 +102,7 @@ uint nbl_glsl_workgroupBallotBitCount_noEndBarriers()
101
102
103
uint nbl_glsl_workgroupBallotBitCount()
104
105
106
const uint retval = nbl_glsl_workgroupBallotBitCount_noEndBarriers();
107
108
0 commit comments