Example usage for org.lwjgl.opengl GLX glXDestroyContext

List of usage examples for org.lwjgl.opengl GLX glXDestroyContext

Introduction

In this page you can find the example usage for org.lwjgl.opengl GLX glXDestroyContext.

Prototype

public static void glXDestroyContext(@NativeType("Display *") long display,
        @NativeType("GLXContext") long ctx) 

Source Link

Document

Destroys an OpenGL context.

Usage

From source file:go.graphics.swing.contextcreator.GLXContextCreator.java

License:Open Source License

@Override
public void stop() {
    GLX.glXDestroyContext(display, context);
}