Example usage for org.lwjgl.opengl GL43 glClearBufferData

List of usage examples for org.lwjgl.opengl GL43 glClearBufferData

Introduction

In this page you can find the example usage for org.lwjgl.opengl GL43 glClearBufferData.

Prototype

public static void glClearBufferData(@NativeType("GLenum") int target, @NativeType("GLenum") int internalformat,
        @NativeType("GLenum") int format, @NativeType("GLenum") int type,
        @Nullable @NativeType("void const *") float[] data) 

Source Link

Document

Array version of: #glClearBufferData ClearBufferData

Usage

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

License:Open Source License

public static void glClearBufferData(int a, int b, int c, int d, ByteBuffer e) {
    GL43.glClearBufferData(a, b, c, d, e);
}