Advertisement
Guest User

Untitled

a guest
Aug 2nd, 2012
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.26 KB | None | 0 0
  1. import org.lwjgl.opengl.Display;
  2. import org.lwjgl.opengl.GLContext;
  3.  
  4. public class GPUInfo {
  5.     public static void main(String[] args) throws Exception {
  6.         Display.create();
  7.         System.out.println(GLContext.getCapabilities().OpenGL33);
  8.         Display.destroy();
  9.     }
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement