public class KHRRobustness
extends java.lang.Object
Several recent trends in how OpenGL ES integrates into modern computer systems have created new requirements for robustness and security for GL rendering contexts.
Additionally GPU architectures now support hardware fault detection; for example, video memory supporting ECC (error correcting codes) and error detection. GL contexts should be capable of recovering from hardware faults such as uncorrectable memory errors. Along with recovery from such hardware faults, the recovery mechanism can also allow recovery from video memory access exceptions and system software failures. System software failures can be due to device changes or driver failures.
GL queries that return (write) some number of bytes to a buffer indicated by a pointer parameter introduce risk of buffer overflows that might be exploitable by malware. To address this, queries with return value sizes that are not expressed directly by the parameters to the query itself are given additional API functions with an additional parameter that specifies the number of bytes in the buffer and never writing bytes beyond that limit. This is particularly useful for multi-threaded usage of GL contexts in a "share group" where one context can change objects in ways that can cause buffer overflows for another context's GL queries.
The original ARB_vertex_buffer_object extension includes an issue that explicitly states program termination is allowed when out-of-bounds vertex buffer object fetches occur. Modern graphics hardware is capable of well-defined behavior in the case of out-of- bounds vertex buffer object fetches. Older hardware may require extra checks to enforce well-defined (and termination free) behavior, but this expense is warranted when processing potentially untrusted content.
The intent of this extension is to address some specific robustness goals:
Requires GLES 2.0.
| Modifier and Type | Field and Description |
|---|---|
static int |
GL_CONTEXT_LOST_KHR
Returned by
GetError. |
static int |
GL_CONTEXT_ROBUST_ACCESS_KHR
Accepted by the
value parameter of GetBooleanv, GetIntegerv, and GetFloatv. |
static int |
GL_GUILTY_CONTEXT_RESET_KHR
Returned by
GetGraphicsResetStatusKHR. |
static int |
GL_INNOCENT_CONTEXT_RESET_KHR
Returned by
GetGraphicsResetStatusKHR. |
static int |
GL_LOSE_CONTEXT_ON_RESET_KHR
Returned by GetIntegerv and related simple queries when
value is RESET_NOTIFICATION_STRATEGY_KHR. |
static int |
GL_NO_RESET_NOTIFICATION_KHR
Returned by GetIntegerv and related simple queries when
value is RESET_NOTIFICATION_STRATEGY_KHR. |
static int |
GL_RESET_NOTIFICATION_STRATEGY_KHR
Accepted by the
value parameter of GetBooleanv, GetIntegerv, and GetFloatv. |
static int |
GL_UNKNOWN_CONTEXT_RESET_KHR
Returned by
GetGraphicsResetStatusKHR. |
| Modifier and Type | Method and Description |
|---|---|
static int |
glGetGraphicsResetStatusKHR()
Indicates if the GL context has been in a reset state at any point since the last call to GetGraphicsResetStatus:
NO_ERROR indicates that the GL context has not been in a reset state since the last call.
GUILTY_CONTEXT_RESET_KHR indicates that a reset has been detected that is attributable to the current GL context.
INNOCENT_CONTEXT_RESET_KHR indicates a reset has been detected that is not attributable to the current GL context.
UNKNOWN_CONTEXT_RESET_KHR indicates a detected graphics reset whose cause is unknown.
|
static float |
glGetnUniformfKHR(int program,
int location)
Returns the value or values of a uniform of the default uniform block.
|
static void |
glGetnUniformfvKHR(int program,
int location,
float[] params)
Array version of:
GetnUniformfvKHR |
static void |
glGetnUniformfvKHR(int program,
int location,
java.nio.FloatBuffer params)
Returns the value or values of a uniform of the default uniform block.
|
static float |
glGetnUniformiKHR(int program,
int location)
Integer version of
GetnUniformfvKHR. |
static void |
glGetnUniformivKHR(int program,
int location,
float[] params)
Array version of:
GetnUniformivKHR |
static void |
glGetnUniformivKHR(int program,
int location,
java.nio.FloatBuffer params)
Integer version of
GetnUniformfvKHR. |
static float |
glGetnUniformuiKHR(int program,
int location)
Unsigned version of
GetnUniformivKHR. |
static void |
glGetnUniformuivKHR(int program,
int location,
float[] params)
Array version of:
GetnUniformuivKHR |
static void |
glGetnUniformuivKHR(int program,
int location,
java.nio.FloatBuffer params)
Unsigned version of
GetnUniformivKHR. |
static void |
glReadnPixelsKHR(int x,
int y,
int width,
int height,
int format,
int type,
java.nio.ByteBuffer pixels)
|
static void |
glReadnPixelsKHR(int x,
int y,
int width,
int height,
int format,
int type,
float[] pixels)
Array version of:
ReadnPixelsKHR |
static void |
glReadnPixelsKHR(int x,
int y,
int width,
int height,
int format,
int type,
java.nio.FloatBuffer pixels)
|
static void |
glReadnPixelsKHR(int x,
int y,
int width,
int height,
int format,
int type,
int[] pixels)
Array version of:
ReadnPixelsKHR |
static void |
glReadnPixelsKHR(int x,
int y,
int width,
int height,
int format,
int type,
java.nio.IntBuffer pixels)
|
static void |
glReadnPixelsKHR(int x,
int y,
int width,
int height,
int format,
int type,
int bufSize,
long pixels)
|
static void |
glReadnPixelsKHR(int x,
int y,
int width,
int height,
int format,
int type,
short[] pixels)
Array version of:
ReadnPixelsKHR |
static void |
glReadnPixelsKHR(int x,
int y,
int width,
int height,
int format,
int type,
java.nio.ShortBuffer pixels)
|
static void |
nglGetnUniformfvKHR(int program,
int location,
int bufSize,
long params)
Unsafe version of:
GetnUniformfvKHR |
static void |
nglGetnUniformivKHR(int program,
int location,
int bufSize,
long params)
Unsafe version of:
GetnUniformivKHR |
static void |
nglGetnUniformuivKHR(int program,
int location,
int bufSize,
long params)
Unsafe version of:
GetnUniformuivKHR |
static void |
nglReadnPixelsKHR(int x,
int y,
int width,
int height,
int format,
int type,
int bufSize,
long pixels)
Unsafe version of:
ReadnPixelsKHR |
public static final int GL_GUILTY_CONTEXT_RESET_KHR
GetGraphicsResetStatusKHR.public static final int GL_INNOCENT_CONTEXT_RESET_KHR
GetGraphicsResetStatusKHR.public static final int GL_UNKNOWN_CONTEXT_RESET_KHR
GetGraphicsResetStatusKHR.public static final int GL_CONTEXT_ROBUST_ACCESS_KHR
value parameter of GetBooleanv, GetIntegerv, and GetFloatv.public static final int GL_RESET_NOTIFICATION_STRATEGY_KHR
value parameter of GetBooleanv, GetIntegerv, and GetFloatv.public static final int GL_LOSE_CONTEXT_ON_RESET_KHR
value is RESET_NOTIFICATION_STRATEGY_KHR.public static final int GL_NO_RESET_NOTIFICATION_KHR
value is RESET_NOTIFICATION_STRATEGY_KHR.public static final int GL_CONTEXT_LOST_KHR
GetError.public static int glGetGraphicsResetStatusKHR()
NO_ERROR indicates that the GL context has not been in a reset state since the last call.GUILTY_CONTEXT_RESET_KHR indicates that a reset has been detected that is attributable to the current GL context.INNOCENT_CONTEXT_RESET_KHR indicates a reset has been detected that is not attributable to the current GL context.UNKNOWN_CONTEXT_RESET_KHR indicates a detected graphics reset whose cause is unknown.If a reset status other than NO_ERROR is returned and subsequent calls return NO_ERROR, the context reset was encountered and completed. If a reset status is repeatedly returned, the context may be in the process of resetting.
Reset notification behavior is determined at context creation time, and may be queried by calling GetIntegerv with the symbolic constant
RESET_NOTIFICATION_STRATEGY_KHR.
If the reset notification behavior is NO_RESET_NOTIFICATION_KHR, then the implementation will never deliver notification of reset events, and
GetGraphicsResetStatus will always return NO_ERROR.
If the behavior is LOSE_CONTEXT_ON_RESET_KHR, a graphics reset will result in a lost context and require creating a new context as described
above. In this case GetGraphicsResetStatus will return an appropriate value from those described above.
If a graphics reset notification occurs in a context, a notification must also occur in all other contexts which share objects with that context.
After a graphics reset has occurred on a context, subsequent GL commands on that context (or any context which shares with that context) will generate a
CONTEXT_LOST_KHR error. Such commands will not have side effects (in particular, they will not modify memory passed by pointer for query results,
and may not block indefinitely or cause termination of the application. Exceptions to this behavior include:
GetError and GetGraphicsResetStatusKHR behave normally following a graphics reset, so that the application can determine a reset has
occurred, and when it is safe to destroy and recreate the context.CONTEXT_LOST_KHR error, but will also return a value
indicating completion to the application.public static void nglReadnPixelsKHR(int x,
int y,
int width,
int height,
int format,
int type,
int bufSize,
long pixels)
ReadnPixelsKHRbufSize - the maximum number of bytes to write into datapublic static void glReadnPixelsKHR(int x,
int y,
int width,
int height,
int format,
int type,
int bufSize,
long pixels)
x - the left pixel coordinatey - the lower pixel coordinatewidth - the number of pixels to read in the x-dimensionheight - the number of pixels to read in the y-dimensionformat - the pixel formattype - the pixel typebufSize - the maximum number of bytes to write into datapixels - a buffer in which to place the returned pixel datapublic static void glReadnPixelsKHR(int x,
int y,
int width,
int height,
int format,
int type,
java.nio.ByteBuffer pixels)
x - the left pixel coordinatey - the lower pixel coordinatewidth - the number of pixels to read in the x-dimensionheight - the number of pixels to read in the y-dimensionformat - the pixel formattype - the pixel typepixels - a buffer in which to place the returned pixel datapublic static void glReadnPixelsKHR(int x,
int y,
int width,
int height,
int format,
int type,
java.nio.ShortBuffer pixels)
x - the left pixel coordinatey - the lower pixel coordinatewidth - the number of pixels to read in the x-dimensionheight - the number of pixels to read in the y-dimensionformat - the pixel formattype - the pixel typepixels - a buffer in which to place the returned pixel datapublic static void glReadnPixelsKHR(int x,
int y,
int width,
int height,
int format,
int type,
java.nio.IntBuffer pixels)
x - the left pixel coordinatey - the lower pixel coordinatewidth - the number of pixels to read in the x-dimensionheight - the number of pixels to read in the y-dimensionformat - the pixel formattype - the pixel typepixels - a buffer in which to place the returned pixel datapublic static void glReadnPixelsKHR(int x,
int y,
int width,
int height,
int format,
int type,
java.nio.FloatBuffer pixels)
x - the left pixel coordinatey - the lower pixel coordinatewidth - the number of pixels to read in the x-dimensionheight - the number of pixels to read in the y-dimensionformat - the pixel formattype - the pixel typepixels - a buffer in which to place the returned pixel datapublic static void nglGetnUniformfvKHR(int program,
int location,
int bufSize,
long params)
GetnUniformfvKHRbufSize - the maximum number of bytes to write to paramspublic static void glGetnUniformfvKHR(int program,
int location,
java.nio.FloatBuffer params)
program - the program objectlocation - the uniform locationparams - the buffer in which to place the returned datapublic static float glGetnUniformfKHR(int program,
int location)
program - the program objectlocation - the uniform locationpublic static void nglGetnUniformivKHR(int program,
int location,
int bufSize,
long params)
GetnUniformivKHRbufSize - the maximum number of bytes to write to paramspublic static void glGetnUniformivKHR(int program,
int location,
java.nio.FloatBuffer params)
GetnUniformfvKHR.program - the program objectlocation - the uniform locationparams - the buffer in which to place the returned datapublic static float glGetnUniformiKHR(int program,
int location)
GetnUniformfvKHR.program - the program objectlocation - the uniform locationpublic static void nglGetnUniformuivKHR(int program,
int location,
int bufSize,
long params)
GetnUniformuivKHRbufSize - the maximum number of bytes to write to paramspublic static void glGetnUniformuivKHR(int program,
int location,
java.nio.FloatBuffer params)
GetnUniformivKHR.program - the program objectlocation - the uniform locationparams - the buffer in which to place the returned datapublic static float glGetnUniformuiKHR(int program,
int location)
GetnUniformivKHR.program - the program objectlocation - the uniform locationpublic static void glReadnPixelsKHR(int x,
int y,
int width,
int height,
int format,
int type,
short[] pixels)
ReadnPixelsKHRpublic static void glReadnPixelsKHR(int x,
int y,
int width,
int height,
int format,
int type,
int[] pixels)
ReadnPixelsKHRpublic static void glReadnPixelsKHR(int x,
int y,
int width,
int height,
int format,
int type,
float[] pixels)
ReadnPixelsKHRpublic static void glGetnUniformfvKHR(int program,
int location,
float[] params)
GetnUniformfvKHRpublic static void glGetnUniformivKHR(int program,
int location,
float[] params)
GetnUniformivKHRpublic static void glGetnUniformuivKHR(int program,
int location,
float[] params)
GetnUniformuivKHRCopyright LWJGL. All Rights Reserved. License terms.