Example usage for org.lwjgl.opengl GL40 glBlendFunci

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

Introduction

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

Prototype

public static void glBlendFunci(@NativeType("GLuint") int buf, @NativeType("GLenum") int sfactor,
        @NativeType("GLenum") int dfactor) 

Source Link

Document

Specifies pixel arithmetic for the specified draw buffer.

Usage

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

License:Open Source License

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