Light | Dark

imageAtomicXor

Name

imageAtomicXor — atomically compute the logical exclusive OR of a value with an existing value in memory, store that value and return the original value

Declaration

uint imageAtomicXor( gimage2D image,
  ivec2 P,
  uint data);
 
uint imageAtomicXor( gimage3D image,
  ivec3 P,
  uint data);
 
uint imageAtomicXor( gimageCube image,
  ivec3 P,
  uint data);
 
uint imageAtomicXor( gimageBuffer image,
  int P,
  uint data);
 
uint imageAtomicXor( gimage2DArray image,
  ivec3 P,
  uint data);
 
uint imageAtomicXor( gimageCubeArray image,
  ivec3 P,
  uint data);
 
int imageAtomicXor( gimage2D image,
  ivec2 P,
  int data);
 
int imageAtomicXor( gimage3D image,
  ivec3 P,
  int data);
 
int imageAtomicXor( gimageCube image,
  ivec3 P,
  int data);
 
int imageAtomicXor( gimageBuffer image,
  int P,
  int data);
 
int imageAtomicXor( gimage2DArray image,
  ivec3 P,
  int data);
 
int imageAtomicXor( 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 logically XOR into the image.

Description

imageAtomicXor atomically computes a new value by logically XORing the value of data to the contents of the texel at coordinate P in the image bound to uint image, stores that value into the image and returns the original value.

Version Support

OpenGL ES Shading Language Version
Function Name 1.00 3.00 3.10 3.20
imageAtomicXor - - -
Think you can improve this page? Edit this page on GitHub.