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

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

/*
 * Copyright LWJGL. All rights reserved.
 * License terms: https://www.lwjgl.org/license
 * MACHINE GENERATED FILE, DO NOT EDIT
 */
package org.lwjgl.opengl;

import static org.lwjgl.system.Checks.*;

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

Stencil buffers are special buffers that allow tests to be made against an incoming value and action taken based on that value. The stencil buffer is * updated during rasterization, and the operation used to update the stencil buffer is chosen based on whether the fragment passes the stencil test, and * if it does, whether it passes the depth test. Traditional OpenGL includes support for several primitive operations, such as incrementing, or clearing * the content of the stencil buffer, or replacing it with a specified reference value.

* *

This extension adds support for an additional set of operations that may be performed on the stencil buffer under each circumstance. Additionally, this * extension separates the value used as the source for stencil operations from the reference value, allowing different values to be used in the stencil * test, and in the update of the stencil buffer.

*/ public class AMDStencilOperationExtended { /** Accepted by the {@code sfail}, {@code dpfail} and {@code dppass} parameters of StencilOp and StencilOpSeparate. */ public static final int GL_SET_AMD = 0x874A, GL_REPLACE_VALUE_AMD = 0x874B; /** Accepted by the {@code param} parameter of GetIntegerv, GetFloatv, GetBooleanv GetDoublev and GetInteger64v. */ public static final int GL_STENCIL_OP_VALUE_AMD = 0x874C, GL_STENCIL_BACK_OP_VALUE_AMD = 0x874D; static { GL.initialize(); } protected AMDStencilOperationExtended() { throw new UnsupportedOperationException(); } static boolean isAvailable(GLCapabilities caps) { return checkFunctions( caps.glStencilOpValueAMD ); } // --- [ glStencilOpValueAMD ] --- public static native void glStencilOpValueAMD(int face, int value); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy