This commit is contained in:
Elias Naur 2003-05-19 08:53:47 +00:00
parent 41f562676f
commit 9d612fc88b
2 changed files with 10 additions and 5 deletions

View file

@ -43,6 +43,11 @@ package org.lwjgl.input;
*/
public class Cursor {
static {
System.loadLibrary(Sys.getLibraryName());
}
/**
* The native handle to the cursor
*/

View file

@ -116,12 +116,12 @@ public class BaseGL extends Window {
* Construct a fullscreen instance of GL. If the underlying OS does not
* support fullscreen mode, then a window will be created instead. If this
* fails too then an Exception will be thrown.
*
*
* @param title The title of the window
* @param bpp Minimum bits per pixel
* @param alpha Minimum bits per pixel in alpha buffer
* @param depth Minimum bits per pixel in depth buffer
* @param stencil Minimum bits per pixel in stencil buffer
* @param bpp Minimum bits per pixel
* @param alpha Minimum bits per pixel in alpha buffer
* @param depth Minimum bits per pixel in depth buffer
* @param stencil Minimum bits per pixel in stencil buffer
*/
public BaseGL(String title, int bpp, int alpha, int depth, int stencil) {
super(title, 0, 0, Display.getWidth(), Display.getHeight());