Example usage for org.lwjgl.opengl GL40 glGenTransformFeedbacks

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

Introduction

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

Prototype

@NativeType("void")
public static int glGenTransformFeedbacks() 

Source Link

Document

Reserves transform feedback object names.

Usage

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

License:Apache License

@Override
public void glGenTransformFeedbacks(int n, int[] ids, int offset) {
    for (int i = offset; i < offset + n; i++) {
        ids[i] = GL40.glGenTransformFeedbacks();
    }/*  www. java  2 s.c  o m*/
}

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

License:Apache License

public static void glGenTransformFeedbacks(int n, int[] ids, int offset) {
    for (int i = offset; i < offset + n; i++) {
        ids[i] = GL40.glGenTransformFeedbacks();
    }//from   w  ww  .ja va  2  s  .  c  o  m
}

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

License:Open Source License

public static int glGenTransformFeedbacks() {
    return GL40.glGenTransformFeedbacks();
}