Example usage for org.lwjgl.opengl GL40 glBlendFuncSeparatei

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

Introduction

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

Prototype

public static void glBlendFuncSeparatei(@NativeType("GLuint") int buf, @NativeType("GLenum") int srcRGB,
        @NativeType("GLenum") int dstRGB, @NativeType("GLenum") int srcAlpha,
        @NativeType("GLenum") int dstAlpha) 

Source Link

Document

Specifies pixel arithmetic for RGB and alpha components separately for the specified draw buffer.

Usage

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

License:Open Source License

public static void glBlendFuncSeparatei(int a, int b, int c, int d, int e) {
    GL40.glBlendFuncSeparatei(a, b, c, d, e);
}