Skip to content

Commit

Permalink
Make the DeferredWorldRenderingPipeline program stack non-static
Browse files Browse the repository at this point in the history
  • Loading branch information
coderbot16 committed Jul 24, 2021
1 parent 8eaf0e9 commit d4cbb69
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -116,8 +116,8 @@ public class DeferredWorldRenderingPipeline implements WorldRenderingPipeline {
private final float sunPathRotation;
private final boolean shouldRenderClouds;

private static final List<GbufferProgram> programStack = new ArrayList<>();
private static final List<String> programStackLog = new ArrayList<>();
private final List<GbufferProgram> programStack = new ArrayList<>();
private final List<String> programStackLog = new ArrayList<>();

private static final Identifier WATER_IDENTIFIER = new Identifier("minecraft", "water");

Expand Down

0 comments on commit d4cbb69

Please sign in to comment.