All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.lwjgl.opengl.WGLARBContextFlushControl Maven / Gradle / Ivy

Go to download

The most widely adopted 2D and 3D graphics API in the industry, bringing thousands of applications to a wide variety of computer platforms.

There is a newer version: 3.3.4
Show newest version
/*
 * 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 WGL_ARB_context_flush_control extension.
 * 
 * 

The WGL version of {@link KHRContextFlushControl}. This extension adds new context creation parameters the allow an application to specify the behavior * that is desired when a context is made non-current, and specifically to opt out of the implicit flush behavior.

*/ public final class WGLARBContextFlushControl { /** Accepted as an attribute name in the {@code *attrib_list} argument to {@link WGLARBCreateContext#wglCreateContextAttribsARB CreateContextAttribsARB}. */ public static final int WGL_CONTEXT_RELEASE_BEHAVIOR_ARB = 0x2097; /** * Accepted as an attribute value for {@link #WGL_CONTEXT_RELEASE_BEHAVIOR_ARB CONTEXT_RELEASE_BEHAVIOR_ARB} in the {@code *attrib_list} argument to * {@link WGLARBCreateContext#wglCreateContextAttribsARB CreateContextAttribsARB}. */ public static final int WGL_CONTEXT_RELEASE_BEHAVIOR_NONE_ARB = 0x0, WGL_CONTEXT_RELEASE_BEHAVIOR_FLUSH_ARB = 0x2098; private WGLARBContextFlushControl() {} }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy