Example usage for org.lwjgl.opengl GL40 glResumeTransformFeedback

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

Introduction

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

Prototype

public static void glResumeTransformFeedback() 

Source Link

Document

Resumes transform feedback operations for the currently bound transform feedback object.

Usage

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

License:Apache License

@Override
public void glResumeTransformFeedback() {
    GL40.glResumeTransformFeedback();
}

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

License:Apache License

public static void glResumeTransformFeedback() {
    GL40.glResumeTransformFeedback();
}