Example usage for org.lwjgl.opengl GL33 glGenSamplers

List of usage examples for org.lwjgl.opengl GL33 glGenSamplers

Introduction

In this page you can find the example usage for org.lwjgl.opengl GL33 glGenSamplers.

Prototype

public static void glGenSamplers(@NativeType("GLuint *") int[] samplers) 

Source Link

Document

Array version of: #glGenSamplers GenSamplers

Usage

From source file:com.badlogic.gdx.backends.jglfw.JglfwGL30.java

License:Apache License

@Override
public void glGenSamplers(int count, IntBuffer samplers) {
    GL33.glGenSamplers(samplers);
}

From source file:io.root.gfx.glutils.GL.java

License:Apache License

public static void glGenSamplers(int count, IntBuffer samplers) {
    GL33.glGenSamplers(samplers);
}

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

License:Open Source License

public static void glGenSamplers(IntBuffer a) {
    GL33.glGenSamplers(a);
}