Skip to content

Commit

Permalink
LWJGL 3.3.6 seems to work rather well now!
Browse files Browse the repository at this point in the history
There's still an OpenAL logging issue on MacOS, but that only affects Mac users running where they can see the logs... probably not a ton of people, and it can be worked around by setting the environment variable:

ALSOFT_LOGLEVEL=0
  • Loading branch information
tommyettinger committed Jan 6, 2025
1 parent 020faa1 commit 71d8456
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 20 deletions.
36 changes: 18 additions & 18 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -66,17 +66,6 @@ dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlinVersion"
implementation "org.jetbrains.kotlin:kotlin-reflect:$kotlinVersion"
implementation "org.apache.commons:commons-exec:$commonsExecVersion"
implementation "com.badlogicgames.gdx:gdx:$gdxVersion"
implementation ("com.badlogicgames.gdx:gdx-backend-lwjgl3:$gdxVersion"){
exclude group: "org.jcraft", module: "jorbis"
exclude group: "org.lwjgl", module: "lwjgl-openal"

exclude group: 'org.lwjgl', module: 'lwjgl-glfw'
exclude group: 'org.lwjgl', module: 'lwjgl-opengl'
exclude group: 'org.lwjgl', module: 'lwjgl-stb'
exclude group: 'org.lwjgl', module: 'lwjgl'
exclude group: 'org.lwjgl', module: 'lwjgl-jemalloc'
}
implementation "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-desktop"
implementation "com.crashinvaders.lml:gdx-kiwi:$lmlVersion"
implementation "com.crashinvaders.lml:gdx-lml:$lmlVersion"
Expand All @@ -91,6 +80,17 @@ dependencies {
implementation "com.rafaskoberg.gdx:typing-label:1.4.0"


implementation "com.badlogicgames.gdx:gdx:$gdxVersion"
implementation ("com.badlogicgames.gdx:gdx-backend-lwjgl3:$gdxVersion"){
exclude group: "org.jcraft", module: "jorbis"
exclude group: "org.lwjgl", module: "lwjgl-openal"

exclude group: 'org.lwjgl', module: 'lwjgl-glfw'
exclude group: 'org.lwjgl', module: 'lwjgl-opengl'
exclude group: 'org.lwjgl', module: 'lwjgl-stb'
exclude group: 'org.lwjgl', module: 'lwjgl'
exclude group: 'org.lwjgl', module: 'lwjgl-jemalloc'
}

implementation "org.lwjgl:lwjgl-jemalloc:$lwjgl3Version"
implementation "org.lwjgl:lwjgl-glfw:$lwjgl3Version"
Expand Down Expand Up @@ -142,16 +142,16 @@ dependencies {
implementation "org.lwjgl:lwjgl-opengl:$lwjgl3Version:natives-windows"
implementation "org.lwjgl:lwjgl-stb:$lwjgl3Version:natives-windows"
implementation "org.lwjgl:lwjgl:$lwjgl3Version:natives-windows"
// implementation "org.lwjgl:lwjgl-jemalloc:$lwjgl3Version:natives-windows-x86"
// implementation "org.lwjgl:lwjgl-glfw:$lwjgl3Version:natives-windows-x86"
// implementation "org.lwjgl:lwjgl-openal:$lwjgl3Version:natives-windows-x86"
// implementation "org.lwjgl:lwjgl-opengl:$lwjgl3Version:natives-windows-x86"
// implementation "org.lwjgl:lwjgl-stb:$lwjgl3Version:natives-windows-x86"
// implementation "org.lwjgl:lwjgl:$lwjgl3Version:natives-windows-x86"
implementation "org.lwjgl:lwjgl-jemalloc:$lwjgl3Version:natives-windows-x86"
implementation "org.lwjgl:lwjgl-glfw:$lwjgl3Version:natives-windows-x86"
implementation "org.lwjgl:lwjgl-openal:$lwjgl3Version:natives-windows-x86"
implementation "org.lwjgl:lwjgl-opengl:$lwjgl3Version:natives-windows-x86"
implementation "org.lwjgl:lwjgl-stb:$lwjgl3Version:natives-windows-x86"
implementation "org.lwjgl:lwjgl:$lwjgl3Version:natives-windows-x86"

implementation "org.lwjgl:lwjgl-nfd:$nfdVersion"
implementation "org.lwjgl:lwjgl-nfd:$nfdVersion:natives-windows"
// implementation "org.lwjgl:lwjgl-nfd:$nfdVersion:natives-windows-x86"
implementation "org.lwjgl:lwjgl-nfd:$nfdVersion:natives-windows-x86"
implementation "org.lwjgl:lwjgl-nfd:$nfdVersion:natives-linux"
implementation "org.lwjgl:lwjgl-nfd:$nfdVersion:natives-linux-arm32"
implementation "org.lwjgl:lwjgl-nfd:$nfdVersion:natives-linux-arm64"
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ lmlVersion=1.10.1.12.1
#visUiVersion=1.5.3
visUiVersion=1aef382077
commonsExecVersion=1.3
lwjgl3Version=3.3.5
nfdVersion=3.3.5
lwjgl3Version=3.3.6
nfdVersion=3.3.6
iconizerVersion=0.1.0

0 comments on commit 71d8456

Please sign in to comment.