public class WGLARBCreateContext
extends java.lang.Object
With the advent of new versions of OpenGL which deprecate features and/or break backward compatibility with older versions, there is a need and desire to indicate at context creation which interface will be used. This extension add a new context creation routine with attributes specifying the GL version and context properties requested for the context.
Requires WGL_ARB_extensions_string.
| Modifier and Type | Field and Description |
|---|---|
static int |
ERROR_INVALID_VERSION_ARB
New errors returned by
WinBase.GetLastError(). |
static int |
WGL_CONTEXT_DEBUG_BIT_ARB
Accepted as bits in the attribute value for
CONTEXT_FLAGS_ARB in attribList. |
static int |
WGL_CONTEXT_FLAGS_ARB
Accepted as an attribute name in
attribList. |
static int |
WGL_CONTEXT_FORWARD_COMPATIBLE_BIT_ARB
Accepted as bits in the attribute value for
CONTEXT_FLAGS_ARB in attribList. |
static int |
WGL_CONTEXT_LAYER_PLANE_ARB
Accepted as an attribute name in
attribList. |
static int |
WGL_CONTEXT_MAJOR_VERSION_ARB
Accepted as an attribute name in
attribList. |
static int |
WGL_CONTEXT_MINOR_VERSION_ARB
Accepted as an attribute name in
attribList. |
| Modifier and Type | Method and Description |
|---|---|
static long |
nwglCreateContextAttribsARB(long hdc,
long shareContext,
long attribList)
Unsafe version of:
CreateContextAttribsARB |
static long |
wglCreateContextAttribsARB(long hdc,
long shareContext,
int[] attribList)
Array version of:
CreateContextAttribsARB |
static long |
wglCreateContextAttribsARB(long hdc,
long shareContext,
java.nio.IntBuffer attribList)
Creates an OpenGL context.
|
public static final int WGL_CONTEXT_MAJOR_VERSION_ARB
attribList.public static final int WGL_CONTEXT_MINOR_VERSION_ARB
attribList.public static final int WGL_CONTEXT_LAYER_PLANE_ARB
attribList.public static final int WGL_CONTEXT_FLAGS_ARB
attribList.public static final int WGL_CONTEXT_DEBUG_BIT_ARB
CONTEXT_FLAGS_ARB in attribList.public static final int WGL_CONTEXT_FORWARD_COMPATIBLE_BIT_ARB
CONTEXT_FLAGS_ARB in attribList.public static final int ERROR_INVALID_VERSION_ARB
WinBase.GetLastError().public static long nwglCreateContextAttribsARB(long hdc,
long shareContext,
long attribList)
CreateContextAttribsARBpublic static long wglCreateContextAttribsARB(long hdc,
long shareContext,
@Nullable
java.nio.IntBuffer attribList)
If shareContext is not NULL, then all shareable data (excluding OpenGL texture objects named 0) will be shared by shareContext, all
other contexts shareContext already shares with, and the newly created context. An arbitrary number of contexts can share data in this fashion.
attribList - a list of attributes for the context. The list consists of a sequence of <name, value> pairs terminated by the value 0. If an attribute is not
specified in attribList, then the default value is used instead. If an attribute is specified more than once, then the last value specified
is used.public static long wglCreateContextAttribsARB(long hdc,
long shareContext,
@Nullable
int[] attribList)
CreateContextAttribsARBCopyright LWJGL. All Rights Reserved. License terms.