Class INTELMapTexture
- java.lang.Object
-
- org.lwjgl.opengl.INTELMapTexture
-
public class INTELMapTexture extends java.lang.ObjectNative bindings to the INTEL_map_texture extension.Systems with integrated GPUs can share the same physical memory between CPU and GPU. This feature, if exposed by API, can bring significant performance benefits for graphics applications by reducing the complexity of uploading/accessing texture contents. This extension enables CPU direct access to the GPU memory holding textures.
The problem with texture memory directly exposed to clients is that textures are often 'tiled'. Texels are kept in specific layout to improve locality of reference and thus performance of texturing. This 'tiling' is specific to particular hardware and would be thus difficult to use.
This extension allows to create textures with 'linear' layout which allows for simplified access on user side (potentially sacrificing some performance during texture sampling).
Requires
OpenGL 3.0.
-
-
Field Summary
Fields Modifier and Type Field and Description static intGL_LAYOUT_DEFAULT_INTEL
GL_LAYOUT_LINEAR_CPU_CACHED_INTEL
GL_LAYOUT_LINEAR_INTELAccepted by theparamswhenpnameis set toTEXTURE_MEMORY_LAYOUT_INTEL.static intGL_TEXTURE_MEMORY_LAYOUT_INTELAccepted by thepnameparameter of TexParameteri, for target TEXTURE_2D.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method and Description static java.nio.ByteBufferglMapTexture2DINTEL(int texture, int level, int access, int[] stride, int[] layout)Array version of:MapTexture2DINTELstatic java.nio.ByteBufferglMapTexture2DINTEL(int texture, int level, int access, int[] stride, int[] layout, java.nio.ByteBuffer old_buffer)Array version of:MapTexture2DINTELstatic java.nio.ByteBufferglMapTexture2DINTEL(int texture, int level, int access, int[] stride, int[] layout, long length, java.nio.ByteBuffer old_buffer)Array version of:MapTexture2DINTELstatic java.nio.ByteBufferglMapTexture2DINTEL(int texture, int level, int access, java.nio.IntBuffer stride, java.nio.IntBuffer layout)Attempts to return a direct pointer to the graphics storage for 2D texture indicated by thetextureparameter.static java.nio.ByteBufferglMapTexture2DINTEL(int texture, int level, int access, java.nio.IntBuffer stride, java.nio.IntBuffer layout, java.nio.ByteBuffer old_buffer)Attempts to return a direct pointer to the graphics storage for 2D texture indicated by thetextureparameter.static java.nio.ByteBufferglMapTexture2DINTEL(int texture, int level, int access, java.nio.IntBuffer stride, java.nio.IntBuffer layout, long length, java.nio.ByteBuffer old_buffer)Attempts to return a direct pointer to the graphics storage for 2D texture indicated by thetextureparameter.static voidglSyncTextureINTEL(int texture)Makes sure that changes made by CPU are visible to GPU by flushing texture cache in GPU.static voidglUnmapTexture2DINTEL(int texture, int level)Releases the pointer obtained previously viaMapTexture2DINTEL.
-
-
-
Field Detail
-
GL_TEXTURE_MEMORY_LAYOUT_INTEL
Accepted by thepnameparameter of TexParameteri, for target TEXTURE_2D.
-
GL_LAYOUT_DEFAULT_INTEL, GL_LAYOUT_LINEAR_INTEL, GL_LAYOUT_LINEAR_CPU_CACHED_INTEL
Accepted by theparamswhenpnameis set toTEXTURE_MEMORY_LAYOUT_INTEL.
-
-
Method Detail
-
glSyncTextureINTEL
public static void glSyncTextureINTEL(int texture)
Makes sure that changes made by CPU are visible to GPU by flushing texture cache in GPU. The GL implementation tracks the cache usage and ignores the command if such flush is not needed.It is worth noting that this extension does not address automatic synchronization between CPU and GPU when both entities operate on the same texture at the same time. This is up to the application to assure such synchronization. Otherwise, the results may not be deterministic (writes from different entities may interleave in a non-deterministic way).
- Parameters:
texture- the texture to synchronize
-
glUnmapTexture2DINTEL
public static void glUnmapTexture2DINTEL(int texture, int level)Releases the pointer obtained previously viaMapTexture2DINTEL. This means that virtual memory space dedicated to make the texture available via a pointer is released and an application can no longer assume this memory is accessible from CPU. Successful execution of this command has an additional effect as ifSyncTextureINTELwas called withtextureparameter.- Parameters:
texture- the texture to unmaplevel- the mipmap level-of-detail of the texture
-
glMapTexture2DINTEL
public static java.nio.ByteBuffer glMapTexture2DINTEL(int texture, int level, int access, java.nio.IntBuffer stride, java.nio.IntBuffer layout) public static java.nio.ByteBuffer glMapTexture2DINTEL(int texture, int level, int access, java.nio.IntBuffer stride, java.nio.IntBuffer layout, java.nio.ByteBuffer old_buffer) public static java.nio.ByteBuffer glMapTexture2DINTEL(int texture, int level, int access, java.nio.IntBuffer stride, java.nio.IntBuffer layout, long length, java.nio.ByteBuffer old_buffer)Attempts to return a direct pointer to the graphics storage for 2D texture indicated by thetextureparameter.LWJGL note: If glMapTexture2DINTEL without an explicit length argument is used and direct-state-access functionality is not available in the current context, the texture object must currently be bound to the GL_TEXTURE_2D target.
- Parameters:
texture- the texture to maplevel- the mipmap level-of-detail of the textureaccess- the type of access that will be performed by the application. One of:MAP_READ_BITMAP_WRITE_BITstride- returns the distance in bytes between subsequent rows in the texturelayout- returns the internal layout of the texture in the graphics memory
-
glMapTexture2DINTEL
public static java.nio.ByteBuffer glMapTexture2DINTEL(int texture, int level, int access, int[] stride, int[] layout) public static java.nio.ByteBuffer glMapTexture2DINTEL(int texture, int level, int access, int[] stride, int[] layout, java.nio.ByteBuffer old_buffer) public static java.nio.ByteBuffer glMapTexture2DINTEL(int texture, int level, int access, int[] stride, int[] layout, long length, java.nio.ByteBuffer old_buffer)Array version of:MapTexture2DINTEL
-
-