File tree 3 files changed +15
-4
lines changed
src/main/java/com/jme3/system/lwjglx
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"
23
23
jnaerator-runtime = " com.nativelibs4java:jnaerator-runtime:0.12"
24
24
junit4 = " junit:junit:4.13.2"
25
25
lwjgl2 = " 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 "
27
27
28
28
lwjgl3-base = { module = " org.lwjgl:lwjgl" , version.ref = " lwjgl3" }
29
29
lwjgl3-glfw = { module = " org.lwjgl:lwjgl-glfw" , version.ref = " lwjgl3" }
Original file line number Diff line number Diff line change 1
1
dependencies {
2
2
api project(' :jme3-core' )
3
3
api project(' :jme3-desktop' )
4
- api libs. lwjgl3. awt
4
+ api (libs. lwjgl3. awt) {
5
+ exclude group : ' org.lwjgl' , module : ' lwjgl'
6
+ }
5
7
6
8
api libs. lwjgl3. base
7
9
api libs. lwjgl3. glfw
Original file line number Diff line number Diff line change 42
42
*/
43
43
final class Win32GLPlatform extends PlatformWin32GLCanvas implements LwjglxGLPlatform {
44
44
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)
47
56
* @see com.jme3.system.lwjglx.LwjglxGLPlatform#destroy()
48
57
*/
49
58
@ Override
You can’t perform that action at this time.
0 commit comments