Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
IMS212 committed Nov 3, 2024
1 parent 2429bba commit 3dfafaa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ val FABRIC_API_VERSION by extra { "0.107.0+1.21.3" }
val PARCHMENT_VERSION by extra { null }

// https://semver.org/
val MOD_VERSION by extra { "1.8.0-beta.6" }
val MOD_VERSION by extra { "1.8.0-beta.7" }

allprojects {
apply(plugin = "java")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public class MixinRenderTarget implements Blaze3dRenderTargetExt {
}

@Inject(method = "createBuffers", at = @At(value = "RETURN"))
private void nameDepthBuffer(int i, int j, boolean bl, CallbackInfo ci) {
private void nameDepthBuffer(int i, int j, CallbackInfo ci) {
GLDebug.nameObject(GL43C.GL_TEXTURE, this.depthBufferId, "Main depth texture");
GLDebug.nameObject(GL43C.GL_TEXTURE, this.colorTextureId, "Main color texture");
GLDebug.nameObject(GL43C.GL_FRAMEBUFFER, this.frameBufferId, "Main framebuffer");
Expand Down

0 comments on commit 3dfafaa

Please sign in to comment.