Example usage for org.lwjgl.opengl GL40 glIsTransformFeedback

List of usage examples for org.lwjgl.opengl GL40 glIsTransformFeedback

Introduction

In this page you can find the example usage for org.lwjgl.opengl GL40 glIsTransformFeedback.

Prototype

@NativeType("GLboolean")
public static boolean glIsTransformFeedback(@NativeType("GLuint") int id) 

Source Link

Document

Determines if a name corresponds to a transform feedback object.

Usage

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

License:Apache License

@Override
public boolean glIsTransformFeedback(int id) {
    return GL40.glIsTransformFeedback(id);
}

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

License:Apache License

public static boolean glIsTransformFeedback(int id) {
    return GL40.glIsTransformFeedback(id);
}

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

License:Open Source License

public static boolean glIsTransformFeedback(int a) {
    return GL40.glIsTransformFeedback(a);
}