Name
imageAtomicExchange — atomically store supplied data into memory and return the original value from memory
Declaration
uint imageAtomicExchange(
|
gimage2D image, |
|
ivec2 P, |
|
uint data) ; |
uint imageAtomicExchange(
|
gimage3D image, |
|
ivec3 P, |
|
uint data) ; |
uint imageAtomicExchange(
|
gimageCube image, |
|
ivec3 P, |
|
uint data) ; |
uint imageAtomicExchange(
|
gimageBuffer image, |
|
int P, |
|
uint data) ; |
uint imageAtomicExchange(
|
gimage2DArray image, |
|
ivec3 P, |
|
uint data) ; |
uint imageAtomicExchange(
|
gimageCubeArray image, |
|
ivec3 P, |
|
uint data) ; |
int imageAtomicExchange(
|
gimage2D image, |
|
ivec2 P, |
|
int data) ; |
int imageAtomicExchange(
|
gimage3D image, |
|
ivec3 P, |
|
int data) ; |
int imageAtomicExchange(
|
gimageCube image, |
|
ivec3 P, |
|
int data) ; |
int imageAtomicExchange(
|
gimageBuffer image, |
|
int P, |
|
int data) ; |
int imageAtomicExchange(
|
gimage2DArray image, |
|
ivec3 P, |
|
int data) ; |
int imageAtomicExchange(
|
gimageCubeArray image, |
|
ivec3 P, |
|
int data) ; |
Parameters
-
image
-
Specify the image unit into which to store data
.
-
P
-
Specify the coordinate at which to store the data.
-
data
-
Specifies the data to exchange with that stored in the image.
Description
imageAtomicExchange
atomically stores the value of data
into texel at coordinate P
in the
image bound to uint image
, and returns the original value of the texel.
Copyright
Copyright © 2011-2015 Khronos Group.
This material may be distributed subject to the terms and conditions set forth in
the Open Publication License, v 1.0, 8 June 1999.
https://opencontent.org/openpub/.