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

org.lwjgl.opengles.KHRNoError Maven / Gradle / Ivy

Go to download

A royalty-free, cross-platform API for full-function 2D and 3D graphics on embedded systems - including consoles, phones, appliances and vehicles.

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.opengles;

/**
 * Native bindings to the KHR_no_error extension.
 * 
 * 

With this extension enabled any behavior that generates a GL error will have undefined behavior. The reason this extension exists is performance can be * increased and power usage decreased. When this mode is used, a GL driver can have undefined behavior where it would have generated a GL error without * this extension. This could include application termination. In general this extension should be used after you have verified all the GL errors are * removed, and an application is not the kind that would check for GL errors and adjust behavior based on those errors.

* *

Requires {@link GLES20 GLES 2.0}.

*/ public final class KHRNoError { /** */ public static final int GL_CONTEXT_FLAG_NO_ERROR_BIT_KHR = 0x8; private KHRNoError() {} }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy