logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

atomicExchange - perform an atomic exchange operation to a variable

Declaration

intatomicExchange(inoutintmem,intdata);uintatomicExchange(inoutuintmem,uintdata);

Description

atomicExchange performs an atomic exhange of data with the contents of mem. The content of data is
       written into mem and the original contents of mem are returned. The contents of the memory being updated
       by the atomic operation are guaranteed not to be modified by any other assignment or atomic memory
       function in any shader invocation between the time the original value is read and the time the new value
       is written.

       Atomic memory functions are supported only for a limited set of variables. A shader will fail to compile
       if the value passed to the mem argument of an atomic memory function does not correspond to a buffer or
       shared variable. It is acceptable to pass an element of an array or a single component of a vector to the
       mem argument of an atomic memory function, as long as the underlying array or vector is a buffer or
       shared variable.

Name

       atomicExchange - perform an atomic exchange operation to a variable

Parameters

mem
           The variable to use as the target of the operation.

       data
           The data to be exchanged with mem.

See Also

atomicAdd(), atomicAnd(), atomicOr(), atomicXor(), atomicMin(), atomicMax(), atomicCompSwap()

Version Support

       ┌────────────────┬───────────────────────────────────────────────────────────────────────────────────┐
       │                │        OpenGLShadingLanguageVersion                                            │
       ├────────────────┼──────┬──────┬──────┬──────┬──────┬──────┬──────┬──────┬──────┬──────┬──────┬──────┤
       │ Function1.101.201.301.401.503.304.004.104.204.304.404.50 │
       │ Name           │      │      │      │      │      │      │      │      │      │      │      │      │
       ├────────────────┼──────┼──────┼──────┼──────┼──────┼──────┼──────┼──────┼──────┼──────┼──────┼──────┤
       │ atomicExchange │  -   │  -   │  -   │  -   │  -   │  -   │  -   │  -   │  -   │  ✔   │  ✔   │  ✔   │
       └────────────────┴──────┴──────┴──────┴──────┴──────┴──────┴──────┴──────┴──────┴──────┴──────┴──────┘

See Also