List of usage examples for org.lwjgl.opengl GL33 glGenSamplers
public static void glGenSamplers(@NativeType("GLuint *") int[] samplers)
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); }