org.lwjgl.opengles.NVAlphaToCoverageDitherControl 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_alpha_to_coverage_dither_control extension.
*
* {@code NV_alpha_to_coverage_dither_control} provides a new mechanism to control whether dithering is applied when the existing alpha to coverage
* functionality is used.
*/
public class NVAlphaToCoverageDitherControl {
static { GLES.initialize(); }
/** Accepted by the {@code param} parameter of {@link #glAlphaToCoverageDitherControlNV AlphaToCoverageDitherControlNV}. */
public static final int
GL_ALPHA_TO_COVERAGE_DITHER_DEFAULT_NV = 0x934D,
GL_ALPHA_TO_COVERAGE_DITHER_ENABLE_NV = 0x934E,
GL_ALPHA_TO_COVERAGE_DITHER_DISABLE_NV = 0x934F;
/** Accepted by the {@code param} of {@link GLES20#glGetIntegerv GetIntegerv}. */
public static final int GL_ALPHA_TO_COVERAGE_DITHER_MODE_NV = 0x92BF;
protected NVAlphaToCoverageDitherControl() {
throw new UnsupportedOperationException();
}
// --- [ glAlphaToCoverageDitherControlNV ] ---
public static native void glAlphaToCoverageDitherControlNV(@NativeType("GLenum") int mode);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy