Skip to content

Commit 9e30775

Browse files
Fix #91 (twas a typo)
1 parent c5dc0e8 commit 9e30775

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/nbl/builtin/glsl/workgroup/arithmetic.glsl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -392,7 +392,7 @@ uint nbl_glsl_workgroupExclusiveMin_noBarriers(in uint val)
392392
}
393393
int nbl_glsl_workgroupExclusiveMin_noBarriers(in int val)
394394
{
395-
NBL_GLSL_WORKGROUP_SCAN(true,int,min,nbl_glsl_subgroupExclusiveMin_impl,val,INT_MAX,uint);
395+
NBL_GLSL_WORKGROUP_SCAN(true,int,min,nbl_glsl_subgroupInclusiveMin_impl,val,INT_MAX,uint);
396396
}
397397
float nbl_glsl_workgroupExclusiveMin_noBarriers(in float val)
398398
{

0 commit comments

Comments
 (0)