Uses of Class
org.lwjgl.LWJGLException

Packages that use LWJGLException
org.lwjgl.input   
org.lwjgl.openal   
org.lwjgl.opencl   
org.lwjgl.opengl   
org.lwjgl.util   
 

Uses of LWJGLException in org.lwjgl.input
 

Methods in org.lwjgl.input that throw LWJGLException
static void Controllers.create()
          Initialise the controllers collection
static void Keyboard.create()
          "Create" the keyboard.
static void Mouse.create()
          "Create" the mouse.
static Cursor Mouse.setNativeCursor(Cursor cursor)
          Binds a native cursor.
 

Constructors in org.lwjgl.input that throw LWJGLException
Cursor(int width, int height, int xHotspot, int yHotspot, int numImages, java.nio.IntBuffer images, java.nio.IntBuffer delays)
          Constructs a new Cursor, with the given parameters.
 

Uses of LWJGLException in org.lwjgl.openal
 

Methods in org.lwjgl.openal that throw LWJGLException
static void AL.create()
          Creates an OpenAL instance.
static void AL.create(java.lang.String deviceArguments, int contextFrequency, int contextRefresh, boolean contextSynchronized)
          Creates an OpenAL instance.
static void AL.create(java.lang.String deviceArguments, int contextFrequency, int contextRefresh, boolean contextSynchronized, boolean openDevice)
           
 

Uses of LWJGLException in org.lwjgl.opencl
 

Methods in org.lwjgl.opencl that throw LWJGLException
static void CL.create()
           
static CLContext CLContext.create(CLPlatform platform, java.util.List<CLDevice> devices, CLContextCallback pfn_notify, Drawable share_drawable, java.nio.IntBuffer errcode_ret)
          Creates a new CLContext.
static CLContext CLContext.create(CLPlatform platform, java.util.List<CLDevice> devices, CLContextCallback pfn_notify, java.nio.IntBuffer errcode_ret)
          Creates a new CLContext.
static CLContext CLContext.create(CLPlatform platform, java.util.List<CLDevice> devices, java.nio.IntBuffer errcode_ret)
          Creates a new CLContext.
static CLContext CLContext.createFromType(CLPlatform platform, long device_type, CLContextCallback pfn_notify, Drawable share_drawable, java.nio.IntBuffer errcode_ret)
          Creates a new CLContext.
static CLContext CLContext.createFromType(CLPlatform platform, long device_type, CLContextCallback pfn_notify, java.nio.IntBuffer errcode_ret)
          Creates a new CLContext.
static CLContext CLContext.createFromType(CLPlatform platform, long device_type, java.nio.IntBuffer errcode_ret)
          Creates a new CLContext.
 

Uses of LWJGLException in org.lwjgl.opengl
 

Methods in org.lwjgl.opengl with parameters of type LWJGLException
protected  void AWTGLCanvas.exceptionOccurred(LWJGLException exception)
          This method will be called if an unhandled LWJGLException occurs in paint().
 

Methods in org.lwjgl.opengl that throw LWJGLException
static void Display.create()
          Create the OpenGL context.
static void Display.create(PixelFormat pixel_format)
          Create the OpenGL context with the given minimum parameters.
static void Display.create(PixelFormat pixel_format, ContextAttribs attribs)
          Create the OpenGL context with the given minimum parameters.
static void Display.create(PixelFormat pixel_format, Drawable shared_drawable)
          Create the OpenGL context with the given minimum parameters.
static void Display.create(PixelFormat pixel_format, Drawable shared_drawable, ContextAttribs attribs)
          Create the OpenGL context with the given minimum parameters.
 java.lang.Object InputImplementation.createCursor(int width, int height, int xHotspot, int yHotspot, int numImages, java.nio.IntBuffer images, java.nio.IntBuffer delays)
          Native cursor handles
 void InputImplementation.createKeyboard()
          Method to create the keyboard
 void InputImplementation.createMouse()
          Method to create the mouse.
 org.lwjgl.opengl.Context AWTGLCanvas.createSharedContext()
          This method should only be called internally.
static DisplayMode[] Display.getAvailableDisplayModes()
          Returns the entire list of possible fullscreen display modes as an array, in no particular order.
 boolean AWTGLCanvas.isCurrent()
           
static boolean Display.isCurrent()
          Returns true if the Display's context is current in the current thread.
 boolean Drawable.isCurrent()
          Returns true if the Drawable's context is current in the current thread.
static void GLContext.loadOpenGLLibrary()
          If the OpenGL reference count is 0, the library is loaded.
 void AWTGLCanvas.makeCurrent()
          Make the canvas' context current.
static void Display.makeCurrent()
          Make the Display the current rendering context for GL calls.
 void Drawable.makeCurrent()
          Makes the Drawable's context current in the current thread.
 void AWTGLCanvas.releaseContext()
           
static void Display.releaseContext()
          Release the Display context.
 void Drawable.releaseContext()
          If the Drawable's context is current in the current thread, no context will be current after a call to this method.
 void AWTGLCanvas.setCLSharingProperties(PointerBuffer properties)
           
 void Drawable.setCLSharingProperties(PointerBuffer properties)
          Sets the appropriate khr_gl_sharing properties in the target PointerBuffer, so that if it is used in a clCreateContext(FromType) call, the created CL context will be sharing objects with this Drawable's GL context.
static void Display.setDisplayConfiguration(float gamma, float brightness, float contrast)
          Set the display configuration to the specified gamma, brightness and contrast.
static void Display.setDisplayMode(DisplayMode mode)
          Set the current display mode.
static void Display.setDisplayModeAndFullscreen(DisplayMode mode)
          Set the mode of the context.
static void Display.setFullscreen(boolean fullscreen)
          Set the fullscreen mode of the context.
 void InputImplementation.setNativeCursor(java.lang.Object handle)
          Method to set the native cursor
static void Display.setParent(java.awt.Canvas parent)
          Set the parent of the Display.
 void AWTGLCanvas.swapBuffers()
          Swap the canvas' buffer
static void Display.swapBuffers()
          Swap the display buffers.
static void GLContext.useContext(java.lang.Object context)
          Makes a GL context the current LWJGL context by loading GL function pointers.
static void GLContext.useContext(java.lang.Object context, boolean forwardCompatible)
          Makes a GL context the current LWJGL context by loading GL function pointers.
 

Constructors in org.lwjgl.opengl that throw LWJGLException
AWTGLCanvas()
          Constructor using the default PixelFormat.
AWTGLCanvas(java.awt.GraphicsDevice device, PixelFormat pixel_format)
          Create an AWTGLCanvas with the requested PixelFormat on the default GraphicsDevice.
AWTGLCanvas(java.awt.GraphicsDevice device, PixelFormat pixel_format, Drawable drawable)
          Create an AWTGLCanvas with the requested PixelFormat on the specified GraphicsDevice.
AWTGLCanvas(java.awt.GraphicsDevice device, PixelFormat pixel_format, Drawable drawable, ContextAttribs attribs)
          Create an AWTGLCanvas with the requested PixelFormat on the specified GraphicsDevice.
AWTGLCanvas(PixelFormat pixel_format)
          Create an AWTGLCanvas with the requested PixelFormat on the default GraphicsDevice.
Pbuffer(int width, int height, PixelFormat pixel_format, Drawable shared_drawable)
          Create an instance of a Pbuffer with a unique OpenGL context.
Pbuffer(int width, int height, PixelFormat pixel_format, RenderTexture renderTexture, Drawable shared_drawable)
          Create an instance of a Pbuffer with a unique OpenGL context.
Pbuffer(int width, int height, PixelFormat pixel_format, RenderTexture renderTexture, Drawable shared_drawable, ContextAttribs attribs)
          Create an instance of a Pbuffer with a unique OpenGL context.
SharedDrawable(Drawable drawable)
           
 

Uses of LWJGLException in org.lwjgl.util
 

Methods in org.lwjgl.util that throw LWJGLException
static DisplayMode[] Display.getAvailableDisplayModes(int minWidth, int minHeight, int maxWidth, int maxHeight, int minBPP, int maxBPP, int minFreq, int maxFreq)
          Determine the available display modes that match the specified minimum and maximum criteria.
 



Copyright © 2002-2009 lwjgl.org. All Rights Reserved.