org.lwjgl.opengl.GLXARBCreateContextProfile 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_profile extension.
*
* Adds an attribute to {@link GLXARBCreateContext}, specifying the GL profile requested for a context of OpenGL 3.2 or later.
*
* Requires {@link GLX14 GLX 1.4} and {@link GL32 OpenGL 3.2}.
*/
public final class GLXARBCreateContextProfile {
/** Accepted as an attribute name in {@code attrib_list}. */
public static final int GLX_CONTEXT_PROFILE_MASK_ARB = 0x9126;
/** Accepted as bits in the attribute value for {@link #GLX_CONTEXT_PROFILE_MASK_ARB CONTEXT_PROFILE_MASK_ARB} in {@code attrib_list}. */
public static final int
GLX_CONTEXT_CORE_PROFILE_BIT_ARB = 0x1,
GLX_CONTEXT_COMPATIBILITY_PROFILE_BIT_ARB = 0x2;
/** GLX error. */
public static final int GLXBadProfileARB = 13;
private GLXARBCreateContextProfile() {}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy