OpenGL.GL.EXT.shader_image_load_store

OpenGL extension EXT.shader_image_load_store
This module customises the behaviour of the OpenGL.raw.GL.EXT.shader_image_load_store to provide a more Python-friendly API
Overview (from the spec)
This extension provides GLSL built-in functions allowing shaders to load from, store to, and perform atomic read-modify-write operations to a single level of a texture object from any shader stage. These built-in functions are named imageLoad(), imageStore(), and imageAtomic*(), respectively, and accept integer texel coordinates to identify the texel accessed. The extension adds the notion of "image units" to the OpenGL API, to which texture levels are bound for access by the GLSL built-in functions. To allow shaders to specify the image unit to access, GLSL provides a new set of data types ("image*") similar to samplers. Each image variable is assigned an integer value to identify an image unit to access, which is specified using Uniform*() APIs in a manner similar to samplers. For implementations supporting the NV_gpu_program5 extensions, assembly language instructions to perform image loads, stores, and atomics are also provided.
This extension also provides the capability to explicitly enable "early" per-fragment tests, where operations like depth and stencil testing are performed prior to fragment shader execution. In unextended OpenGL, fragment shaders never have any side effects and implementations can sometimes perform per-fragment tests and discard some fragments prior to executing the fragment shader. Since this extension allows fragment shaders to write to texture and buffer object memory using the built-in image functions, such optimizations could lead to non-deterministic results. To avoid this, implementations supporting this extension may not perform such optimizations on shaders having such side effects. However, enabling early per-fragment tests guarantees that such tests will be performed prior to fragment shader execution, and ensures that image stores and atomics will not be performed by fragment shader invocations where these per-fragment tests fail.
Finally, this extension provides both a GLSL built-in function and an OpenGL API function allowing applications some control over the ordering of image loads, stores, and atomics relative to other OpenGL pipeline operations accessing the same memory. Because the extension provides the ability to perform random accesses to texture or buffer object memory, such accesses are not easily tracked by the OpenGL driver. To avoid the need for heavy-handed synchronization at the driver level, this extension requires manual synchronization. The MemoryBarrierEXT() OpenGL API function allows applications to specify a bitfield indicating the set of OpenGL API operations to synchronize relative to shader memory access. The memoryBarrier() GLSL built-in function provides a synchronization point within a given shader invocation to ensure that all memory accesses performed prior to the synchronization point complete prior to any started after the synchronization point.
The official definition of this extension is available here: http://www.opengl.org/registry/specs/EXT/shader_image_load_store.txt

Functions

Constants

GL_ALL_BARRIER_BITS_EXT (4294967295)
GL_ATOMIC_COUNTER_BARRIER_BIT_EXT (4096)
GL_BUFFER_UPDATE_BARRIER_BIT_EXT (512)
GL_COMMAND_BARRIER_BIT_EXT (64)
GL_ELEMENT_ARRAY_BARRIER_BIT_EXT (2)
GL_FRAMEBUFFER_BARRIER_BIT_EXT (1024)
GL_IMAGE_1D_ARRAY_EXT (36946)
GL_IMAGE_1D_EXT (36940)
GL_IMAGE_2D_ARRAY_EXT (36947)
GL_IMAGE_2D_EXT (36941)
GL_IMAGE_2D_MULTISAMPLE_ARRAY_EXT (36950)
GL_IMAGE_2D_MULTISAMPLE_EXT (36949)
GL_IMAGE_2D_RECT_EXT (36943)
GL_IMAGE_3D_EXT (36942)
GL_IMAGE_BINDING_ACCESS_EXT (36670)
GL_IMAGE_BINDING_FORMAT_EXT (36974)
GL_IMAGE_BINDING_LAYER_EXT (36669)
GL_IMAGE_BINDING_LAYERED_EXT (36668)
GL_IMAGE_BINDING_LEVEL_EXT (36667)
GL_IMAGE_BINDING_NAME_EXT (36666)
GL_IMAGE_BUFFER_EXT (36945)
GL_IMAGE_CUBE_EXT (36944)
GL_IMAGE_CUBE_MAP_ARRAY_EXT (36948)
GL_INT_IMAGE_1D_ARRAY_EXT (36957)
GL_INT_IMAGE_1D_EXT (36951)
GL_INT_IMAGE_2D_ARRAY_EXT (36958)
GL_INT_IMAGE_2D_EXT (36952)
GL_INT_IMAGE_2D_MULTISAMPLE_ARRAY_EXT (36961)
GL_INT_IMAGE_2D_MULTISAMPLE_EXT (36960)
GL_INT_IMAGE_2D_RECT_EXT (36954)
GL_INT_IMAGE_3D_EXT (36953)
GL_INT_IMAGE_BUFFER_EXT (36956)
GL_INT_IMAGE_CUBE_EXT (36955)
GL_INT_IMAGE_CUBE_MAP_ARRAY_EXT (36959)
GL_MAX_COMBINED_IMAGE_UNITS_AND_FRAGMENT_OUTPUTS_EXT (36665)
GL_MAX_IMAGE_SAMPLES_EXT (36973)
GL_MAX_IMAGE_UNITS_EXT (36664)
GL_PIXEL_BUFFER_BARRIER_BIT_EXT (128)
GL_SHADER_IMAGE_ACCESS_BARRIER_BIT_EXT (32)
GL_TEXTURE_FETCH_BARRIER_BIT_EXT (8)
GL_TEXTURE_UPDATE_BARRIER_BIT_EXT (256)
GL_TRANSFORM_FEEDBACK_BARRIER_BIT_EXT (2048)
GL_UNIFORM_BARRIER_BIT_EXT (4)
GL_UNSIGNED_INT_IMAGE_1D_ARRAY_EXT (36968)
GL_UNSIGNED_INT_IMAGE_1D_EXT (36962)
GL_UNSIGNED_INT_IMAGE_2D_ARRAY_EXT (36969)
GL_UNSIGNED_INT_IMAGE_2D_EXT (36963)
GL_UNSIGNED_INT_IMAGE_2D_MULTISAMPLE_ARRAY_EXT (36972)
GL_UNSIGNED_INT_IMAGE_2D_MULTISAMPLE_EXT (36971)
GL_UNSIGNED_INT_IMAGE_2D_RECT_EXT (36965)
GL_UNSIGNED_INT_IMAGE_3D_EXT (36964)
GL_UNSIGNED_INT_IMAGE_BUFFER_EXT (36967)
GL_UNSIGNED_INT_IMAGE_CUBE_EXT (36966)
GL_UNSIGNED_INT_IMAGE_CUBE_MAP_ARRAY_EXT (36970)
GL_VERTEX_ATTRIB_ARRAY_BARRIER_BIT_EXT (1)