mirror of
https://github.com/AngelAuraMC/Amethyst-Android.git
synced 2025-09-17 16:47:14 -04:00
Fix NPE on SharedDrawable
This commit is contained in:
parent
2137796aaa
commit
6957bcff4a
@ -61,7 +61,7 @@ public class Display {
|
||||
private static boolean window_created;
|
||||
|
||||
/** The Drawable instance that tracks the current Display context */
|
||||
private static volatile DrawableLWJGL drawable;
|
||||
private static volatile DrawableLWJGL drawable = null;
|
||||
|
||||
private static Canvas parent;
|
||||
|
||||
@ -207,29 +207,12 @@ public class Display {
|
||||
// Drawable)"); // TODO
|
||||
create(pixel_format);
|
||||
|
||||
final DrawableGL drawable = new DrawableGL() {
|
||||
public void destroy() {
|
||||
synchronized ( GlobalLock.lock ) {
|
||||
if ( !isCreated() )
|
||||
return;
|
||||
|
||||
releaseDrawable();
|
||||
super.destroy();
|
||||
destroyWindow();
|
||||
// x = y = -1;
|
||||
// cached_icons = null;
|
||||
reset();
|
||||
}
|
||||
}
|
||||
};
|
||||
Display.drawable = drawable;
|
||||
|
||||
try {
|
||||
drawable.setPixelFormat(pixel_format, null);
|
||||
try {
|
||||
createWindow();
|
||||
try {
|
||||
drawable.context = new ContextGL(drawable.peer_info, null /* attribs */, shared_drawable != null ? ((DrawableGL)shared_drawable).getContext() : null);
|
||||
((DrawableGL) drawable).context = new ContextGL(((DrawableGL) drawable).peer_info, null /* attribs */, shared_drawable != null ? ((DrawableGL)shared_drawable).getContext() : null);
|
||||
try {
|
||||
makeCurrentAndSetSwapInterval();
|
||||
initContext();
|
||||
@ -732,6 +715,24 @@ public class Display {
|
||||
}
|
||||
};
|
||||
|
||||
final DrawableGL drawable = new DrawableGL() {
|
||||
public void destroy() {
|
||||
synchronized ( GlobalLock.lock ) {
|
||||
if ( !isCreated() )
|
||||
return;
|
||||
|
||||
releaseDrawable();
|
||||
super.destroy();
|
||||
destroyWindow();
|
||||
// x = y = -1;
|
||||
// cached_icons = null;
|
||||
reset();
|
||||
}
|
||||
}
|
||||
};
|
||||
drawable.context = new ContextGL(null, null, null);
|
||||
Display.drawable = drawable;
|
||||
|
||||
displayCreated = true;
|
||||
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user