File tree Expand file tree Collapse file tree 3 files changed +15
-4
lines changed
src/main/java/com/jme3/system/lwjglx Expand file tree Collapse file tree 3 files changed +15
-4
lines changed Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ jna = "net.java.dev.jna:jna:5.10.0"
2323jnaerator-runtime = " com.nativelibs4java:jnaerator-runtime:0.12"
2424junit4 = " junit:junit:4.13.2"
2525lwjgl2 = " org.jmonkeyengine:lwjgl:2.9.5"
26- lwjgl3-awt = " org.lwjglx:lwjgl3-awt:0.1.8 "
26+ lwjgl3-awt = " org.lwjglx:lwjgl3-awt:0.2.3 "
2727
2828lwjgl3-base = { module = " org.lwjgl:lwjgl" , version.ref = " lwjgl3" }
2929lwjgl3-glfw = { module = " org.lwjgl:lwjgl-glfw" , version.ref = " lwjgl3" }
Original file line number Diff line number Diff line change 11dependencies {
22 api project(' :jme3-core' )
33 api project(' :jme3-desktop' )
4- api libs. lwjgl3. awt
4+ api (libs. lwjgl3. awt) {
5+ exclude group : ' org.lwjgl' , module : ' lwjgl'
6+ }
57
68 api libs. lwjgl3. base
79 api libs. lwjgl3. glfw
Original file line number Diff line number Diff line change 4242 */
4343final class Win32GLPlatform extends PlatformWin32GLCanvas implements LwjglxGLPlatform {
4444
45- /**
46- * (non-Javadoc)
45+ /* (non-Javadoc)
46+ * @see com.jme3.system.lwjglx.LwjglxGLPlatform#dispose()
47+ */
48+ @ Override
49+ public void dispose () {
50+ if (ds != null ) {
51+ super .dispose ();
52+ }
53+ }
54+
55+ /* (non-Javadoc)
4756 * @see com.jme3.system.lwjglx.LwjglxGLPlatform#destroy()
4857 */
4958 @ Override
You can’t perform that action at this time.
0 commit comments