Example usage for org.lwjgl.opengl GL40 glBlendEquationSeparatei

List of usage examples for org.lwjgl.opengl GL40 glBlendEquationSeparatei

Introduction

In this page you can find the example usage for org.lwjgl.opengl GL40 glBlendEquationSeparatei.

Prototype

public static void glBlendEquationSeparatei(@NativeType("GLuint") int buf, @NativeType("GLenum") int modeRGB,
        @NativeType("GLenum") int modeAlpha) 

Source Link

Document

Sets the RGB blend equation and the alpha blend equation separately for the specified draw buffer.

Usage

From source file:tk.ivybits.engine.gl.GL.java

License:Open Source License

public static void glBlendEquationSeparatei(int a, int b, int c) {
    GL40.glBlendEquationSeparatei(a, b, c);
}