org.lwjgl.opengles.NVTextureBarrier Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of org.lwjgl.opengles Show documentation
Show all versions of org.lwjgl.opengles Show documentation
LWJGL OSGi bundle (OpenGL ES bindings)
The newest version!
/*
* Copyright LWJGL. All rights reserved.
* License terms: https://www.lwjgl.org/license
* MACHINE GENERATED FILE, DO NOT EDIT
*/
package org.lwjgl.opengles;
import org.lwjgl.system.*;
/**
* Native bindings to the NV_texture_barrier extension.
*
* This extension relaxes the restrictions on rendering to a currently bound texture and provides a mechanism to avoid read-after-write hazards.
*/
public class NVTextureBarrier {
static { GLES.initialize(); }
protected NVTextureBarrier() {
throw new UnsupportedOperationException();
}
// --- [ glTextureBarrierNV ] ---
/** Guarantees that writes have completed and caches have been invalidated before subsequent Draws are executed. */
public static native void glTextureBarrierNV();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy