mirror of
https://github.com/shadowfacts/lwjgl2-arm64.git
synced 2026-02-05 23:35:12 +01:00
Fixes
This commit is contained in:
parent
41f562676f
commit
9d612fc88b
|
|
@ -43,6 +43,11 @@ package org.lwjgl.input;
|
|||
*/
|
||||
|
||||
public class Cursor {
|
||||
|
||||
static {
|
||||
System.loadLibrary(Sys.getLibraryName());
|
||||
}
|
||||
|
||||
/**
|
||||
* The native handle to the cursor
|
||||
*/
|
||||
|
|
|
|||
|
|
@ -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());
|
||||
|
|
|
|||
Loading…
Reference in a new issue