Example usage for org.lwjgl.opengl GL33 glDeleteSamplers

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

Introduction

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

Prototype

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

Source Link

Document

Array version of: #glDeleteSamplers DeleteSamplers

Usage

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

License:Apache License

@Override
public void glDeleteSamplers(int count, int[] samplers, int offset) {
    for (int i = offset; i < offset + count; i++) {
        GL33.glDeleteSamplers(samplers[i]);
    }//from  w w  w .  j a v a  2 s. c o  m
}

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

License:Apache License

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

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

License:Apache License

public static void glDeleteSamplers(int count, int[] samplers, int offset) {
    for (int i = offset; i < offset + count; i++) {
        GL33.glDeleteSamplers(samplers[i]);
    }/* w  ww  .  j  a  v a2s.  c om*/
}

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

License:Apache License

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

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

License:Open Source License

public static void glDeleteSamplers(int a) {
    GL33.glDeleteSamplers(a);
}

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

License:Open Source License

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