Skip to content

Commit

Permalink
Make NO_DEPTH_LAYER private static final
Browse files Browse the repository at this point in the history
  • Loading branch information
Earthcomputer committed Oct 21, 2024
1 parent 79c46d0 commit d2d472b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ private record AddQueueEntry(Layer layer, Object key, Shape shape, int life) {}

private record RemoveQueueEntry(Layer layer, Object key) {}

public static RenderType NO_DEPTH_LAYER = RenderType.create("clientcommands_no_depth", DefaultVertexFormat.POSITION_COLOR_NORMAL, VertexFormat.Mode.LINES, 256, true, true, RenderType.CompositeState.builder()
private static final RenderType NO_DEPTH_LAYER = RenderType.create("clientcommands_no_depth", DefaultVertexFormat.POSITION_COLOR_NORMAL, VertexFormat.Mode.LINES, 256, true, true, RenderType.CompositeState.builder()
.setShaderState(RenderType.RENDERTYPE_LINES_SHADER)
.setWriteMaskState(RenderType.COLOR_WRITE)
.setCullState(RenderType.NO_CULL)
Expand Down

0 comments on commit d2d472b

Please sign in to comment.