Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use a different Shader get-method in Blitter.blit() #6923

Closed
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
run spotlessApply
  • Loading branch information
Lordfirespeed committed May 7, 2023
commit 055872193d619fc0e6a9fe911b633e5611dd677c
2 changes: 1 addition & 1 deletion src/main/java/appeng/client/gui/style/Blitter.java
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ public Blitter colorRgb(int packedRgb) {

return color(r, g, b);
}

public void blit(PoseStack poseStack) {
RenderSystem.setShader(GameRenderer::getPositionTexShader);
RenderSystem.setShaderTexture(0, this.texture);
Expand Down
Loading