Example usage for org.lwjgl.opengl GL33 glIsSampler

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

Introduction

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

Prototype

@NativeType("GLboolean")
public static boolean glIsSampler(@NativeType("GLuint") int sampler) 

Source Link

Document

Determines if a name corresponds to a sampler object.

Usage

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

License:Apache License

@Override
public boolean glIsSampler(int sampler) {
    return GL33.glIsSampler(sampler);
}

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

License:Apache License

public static boolean glIsSampler(int sampler) {
    return GL33.glIsSampler(sampler);
}

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

License:Open Source License

public static boolean glIsSampler(int a) {
    return GL33.glIsSampler(a);
}