
解决opengles shader ‘atomicAdd‘ 无效果问题
对于opengles的shader在android上有一定的兼容性问题,在某些机型上atomicAdd是支持SSBO uint数据的,但在某些机型特别是华为机型是不支持uint数据的,shader编译出错:S0001: No matching overload for function 'atomicAdd' found,将uint改成int即可。//华为机型不支持uint,uvec2,uvec3,uvec4等,此处用int类型。





