OpenGL-Refpages
OpenGL-Refpages copied to clipboard
Declaration of atomicCompSwap is not right
On the page https://registry.khronos.org/OpenGL-Refpages/gl4/html/atomicCompSwap.xhtml
The declaration
int atomicCompSwap(inout int mem, uint compare, uint data);
should be replaced with
int atomicCompSwap(inout int mem, int compare, int data);
You should also fix the parameter descriptions, it only has two and the way it describes "data" is incorrect