Links
Tags
Creators
Details
1.0.0
Compatibility
Changes
MaxGL
Forces Minecraft to use OpenGL 4.6 instead of the default 3.3 cap.
Why This Exists
Minecraft 26.1 caps OpenGL at 3.3 by default. ThreatenGL was the go-to fix for this — but it silently stopped working on 26.1 because Mojang moved the OpenGL hint calls from Window to GlBackend.setWindowHints() internally. This fork fixes that.
Use This If
- You need OpenGL 4.x features (compute shaders, persistent mapped buffers, etc.)
- ThreatenGL isn't working on 26.1
Requirements
- Minecraft: 26.1 only
- Loader: Fabric 0.18.4 and above
- Java: 21 and above
- Side: Client only
Notes
- Does absolutely nothing on dedicated servers
- Only tested on Minecraft 26.1 — do not expect it to work on older versions
- If 26.1 support is added to the original ThreatenGL, use that instead
Fork of ThreatenGL by Richy Z. — LGPL-3.0
Projects on Modrinth are automatically available through a Maven repository for use with JVM build tools such as Gradle. To learn more about the Modrinth Maven API, click here.
Note: When available, you should use the creator's maven repo instead as it will have transitive dependency information that the Modrinth Maven API does not. You may also end up with duplicate dependencies if you use a mix of Modrinth and non-Modrinth Maven repositories for your dependencies, because the group identifier will be different when served through the Modrinth Maven API.
Maven coordinates:
Version ID:
build.gradle:
repositories {
exclusiveContent {
forRepository {
maven {
name = "Modrinth"
url = "https://api.modrinth.com/maven"
}
}
// forRepositories(fg.repository) // Uncomment when using ForgeGradle
filter {
includeGroup "maven.modrinth"
}
}
}
// Standard Gradle dependency
dependencies {
implementation "maven.modrinth:WogJgwie:SQ6w2hsS"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:WogJgwie:SQ6w2hsS"
}

