Example usage for org.lwjgl.opengl GL40 glBlendEquationi

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

Introduction

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

Prototype

public static void glBlendEquationi(@NativeType("GLuint") int buf, @NativeType("GLenum") int mode) 

Source Link

Document

Specifies the equation used for both the RGB blend equation and the Alpha blend equation for the specified draw buffer.

Usage

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

License:Open Source License

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