org.lwjgl.opengl.GLXARBCreateContextRobustness Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lwjgl-opengl Show documentation
Show all versions of lwjgl-opengl Show documentation
The most widely adopted 2D and 3D graphics API in the industry, bringing thousands of applications to a wide variety of computer platforms.
/*
* Copyright LWJGL. All rights reserved.
* License terms: https://www.lwjgl.org/license
* MACHINE GENERATED FILE, DO NOT EDIT
*/
package org.lwjgl.opengl;
/**
* Native bindings to the GLX_ARB_create_context_robustness extension.
*
* This extension allows creating an OpenGL context supporting robust buffer access behavior and a specified graphics reset notification behavior.
*
* Requires {@link GLX14 GLX 1.4}, {@link GLXARBCreateContext GLX_ARB_create_context} and {@link ARBRobustness ARB_robustness}.
*/
public final class GLXARBCreateContextRobustness {
/**
* Accepted as a bit in the attribute value for {@link GLXARBCreateContext#GLX_CONTEXT_FLAGS_ARB CONTEXT_FLAGS_ARB} in the {@code attrib_list} argument to
* {@link GLXARBCreateContext#glXCreateContextAttribsARB CreateContextAttribsARB}.
*/
public static final int GLX_CONTEXT_ROBUST_ACCESS_BIT_ARB = 0x4;
/** Accepted as an attribute name in the {@code attrib_list} argument to {@link GLXARBCreateContext#glXCreateContextAttribsARB CreateContextAttribsARB}. */
public static final int GLX_CONTEXT_RESET_NOTIFICATION_STRATEGY_ARB = 0x8256;
/**
* Accepted as an attribute value for {@link #GLX_CONTEXT_RESET_NOTIFICATION_STRATEGY_ARB CONTEXT_RESET_NOTIFICATION_STRATEGY_ARB} in the {@code attrib_list} argument to
* {@link GLXARBCreateContext#glXCreateContextAttribsARB CreateContextAttribsARB}.
*/
public static final int
GLX_NO_RESET_NOTIFICATION_ARB = 0x8261,
GLX_LOSE_CONTEXT_ON_RESET_ARB = 0x8252;
private GLXARBCreateContextRobustness() {}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy