mirror of
https://github.com/shadowfacts/lwjgl2-arm64.git
synced 2026-04-06 06:53:59 +00:00
moved Sys.log to LWJGLUtils and renamed property to org.lwjgl.util.Debug
This commit is contained in:
parent
c9fc024fa4
commit
ad8d7676c2
18 changed files with 89 additions and 83 deletions
|
|
@ -32,6 +32,7 @@
|
|||
package org.lwjgl.opengl;
|
||||
|
||||
import org.lwjgl.LWJGLException;
|
||||
import org.lwjgl.LWJGLUtil;
|
||||
import org.lwjgl.Sys;
|
||||
|
||||
import java.lang.reflect.Method;
|
||||
|
|
@ -169,7 +170,7 @@ public final class GLContext {
|
|||
Method init_stubs_method = extension_class.getDeclaredMethod("initNativeStubs", null);
|
||||
init_stubs_method.invoke(null, null);
|
||||
} catch (Exception e) {
|
||||
Sys.log("Failed to initialize extension " + extension_class + " - exception: " + e);
|
||||
LWJGLUtil.log("Failed to initialize extension " + extension_class + " - exception: " + e);
|
||||
supported_extensions.remove(ext_name);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue