Skip to content

Commit

Permalink
GuiColorEditorHSV: Remove the unused shader program (see GH #82)
Browse files Browse the repository at this point in the history
  • Loading branch information
maruohon committed May 2, 2023
1 parent ea63f3d commit b8f4078
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/main/java/fi/dy/masa/malilib/gui/GuiColorEditorHSV.java
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
import java.awt.Color;
import javax.annotation.Nullable;
import com.mojang.blaze3d.systems.RenderSystem;

import net.minecraft.client.gui.screen.Screen;
import net.minecraft.client.render.BufferBuilder;
import net.minecraft.client.render.GameRenderer;
Expand All @@ -11,18 +12,16 @@
import net.minecraft.client.render.VertexFormats;
import net.minecraft.client.util.math.MatrixStack;
import net.minecraft.util.math.MathHelper;

import fi.dy.masa.malilib.config.IConfigInteger;
import fi.dy.masa.malilib.gui.interfaces.IDialogHandler;
import fi.dy.masa.malilib.gui.interfaces.ITextFieldListener;
import fi.dy.masa.malilib.render.RenderUtils;
import fi.dy.masa.malilib.render.shader.ShaderProgram;
import fi.dy.masa.malilib.util.KeyCodes;
import fi.dy.masa.malilib.util.StringUtils;

public class GuiColorEditorHSV extends GuiDialogBase
{
protected static final ShaderProgram SHADER_HUE = new ShaderProgram("malilib", null, "shaders/sv_selector.frag");

protected final IConfigInteger config;
@Nullable protected final IDialogHandler dialogHandler;
@Nullable protected Element clickedElement;
Expand Down

0 comments on commit b8f4078

Please sign in to comment.