Commit 405ae832aa57afe91294879569fa2e63ea94b330
1 parent
939dc159
moving GL and GLClippingPlanes to com.mumfrey.liteloader.gl package
Showing
12 changed files
with
16 additions
and
16 deletions
java/client/com/mumfrey/liteloader/client/gui/GuiCheckbox.java
| 1 | package com.mumfrey.liteloader.client.gui; | 1 | package com.mumfrey.liteloader.client.gui; |
| 2 | 2 | ||
| 3 | -import static com.mumfrey.liteloader.client.util.GL.*; | 3 | +import static com.mumfrey.liteloader.gl.GL.*; |
| 4 | import net.minecraft.client.Minecraft; | 4 | import net.minecraft.client.Minecraft; |
| 5 | import net.minecraft.client.gui.GuiButton; | 5 | import net.minecraft.client.gui.GuiButton; |
| 6 | 6 |
java/client/com/mumfrey/liteloader/client/gui/GuiLiteLoaderPanel.java
| 1 | package com.mumfrey.liteloader.client.gui; | 1 | package com.mumfrey.liteloader.client.gui; |
| 2 | 2 | ||
| 3 | -import static com.mumfrey.liteloader.client.util.GL.*; | 3 | +import static com.mumfrey.liteloader.gl.GL.*; |
| 4 | 4 | ||
| 5 | import java.io.IOException; | 5 | import java.io.IOException; |
| 6 | import java.util.ArrayList; | 6 | import java.util.ArrayList; |
java/client/com/mumfrey/liteloader/client/gui/GuiModInfoPanel.java
| 1 | package com.mumfrey.liteloader.client.gui; | 1 | package com.mumfrey.liteloader.client.gui; |
| 2 | 2 | ||
| 3 | -import static com.mumfrey.liteloader.client.util.GLClippingPlanes.*; | 3 | +import static com.mumfrey.liteloader.gl.GLClippingPlanes.*; |
| 4 | import net.minecraft.client.gui.FontRenderer; | 4 | import net.minecraft.client.gui.FontRenderer; |
| 5 | import net.minecraft.client.gui.Gui; | 5 | import net.minecraft.client.gui.Gui; |
| 6 | import net.minecraft.client.resources.I18n; | 6 | import net.minecraft.client.resources.I18n; |
java/client/com/mumfrey/liteloader/client/gui/GuiModListPanel.java
| 1 | package com.mumfrey.liteloader.client.gui; | 1 | package com.mumfrey.liteloader.client.gui; |
| 2 | 2 | ||
| 3 | -import static com.mumfrey.liteloader.client.util.GL.*; | ||
| 4 | -import static com.mumfrey.liteloader.client.util.GLClippingPlanes.*; | 3 | +import static com.mumfrey.liteloader.gl.GL.*; |
| 4 | +import static com.mumfrey.liteloader.gl.GLClippingPlanes.*; | ||
| 5 | 5 | ||
| 6 | import java.util.ArrayList; | 6 | import java.util.ArrayList; |
| 7 | import java.util.List; | 7 | import java.util.List; |
java/client/com/mumfrey/liteloader/client/gui/GuiPanel.java
| 1 | package com.mumfrey.liteloader.client.gui; | 1 | package com.mumfrey.liteloader.client.gui; |
| 2 | 2 | ||
| 3 | -import static com.mumfrey.liteloader.client.util.GL.*; | 3 | +import static com.mumfrey.liteloader.gl.GL.*; |
| 4 | 4 | ||
| 5 | import java.util.LinkedList; | 5 | import java.util.LinkedList; |
| 6 | import java.util.List; | 6 | import java.util.List; |
java/client/com/mumfrey/liteloader/client/gui/GuiPanelConfigContainer.java
| 1 | package com.mumfrey.liteloader.client.gui; | 1 | package com.mumfrey.liteloader.client.gui; |
| 2 | 2 | ||
| 3 | -import static com.mumfrey.liteloader.client.util.GL.*; | ||
| 4 | -import static com.mumfrey.liteloader.client.util.GLClippingPlanes.*; | 3 | +import static com.mumfrey.liteloader.gl.GL.*; |
| 4 | +import static com.mumfrey.liteloader.gl.GLClippingPlanes.*; | ||
| 5 | import net.minecraft.client.Minecraft; | 5 | import net.minecraft.client.Minecraft; |
| 6 | import net.minecraft.client.gui.GuiButton; | 6 | import net.minecraft.client.gui.GuiButton; |
| 7 | import net.minecraft.client.resources.I18n; | 7 | import net.minecraft.client.resources.I18n; |
java/client/com/mumfrey/liteloader/client/gui/GuiPanelLiteLoaderLog.java
| 1 | package com.mumfrey.liteloader.client.gui; | 1 | package com.mumfrey.liteloader.client.gui; |
| 2 | 2 | ||
| 3 | -import static com.mumfrey.liteloader.client.util.GL.*; | 3 | +import static com.mumfrey.liteloader.gl.GL.*; |
| 4 | 4 | ||
| 5 | import java.net.URI; | 5 | import java.net.URI; |
| 6 | import java.util.ArrayList; | 6 | import java.util.ArrayList; |
java/client/com/mumfrey/liteloader/client/gui/GuiPanelMods.java
| 1 | package com.mumfrey.liteloader.client.gui; | 1 | package com.mumfrey.liteloader.client.gui; |
| 2 | 2 | ||
| 3 | -import static com.mumfrey.liteloader.client.util.GL.*; | ||
| 4 | -import static com.mumfrey.liteloader.client.util.GLClippingPlanes.*; | 3 | +import static com.mumfrey.liteloader.gl.GL.*; |
| 4 | +import static com.mumfrey.liteloader.gl.GLClippingPlanes.*; | ||
| 5 | 5 | ||
| 6 | import java.util.ArrayList; | 6 | import java.util.ArrayList; |
| 7 | import java.util.List; | 7 | import java.util.List; |
java/client/com/mumfrey/liteloader/client/gui/GuiScrollPanel.java
| 1 | package com.mumfrey.liteloader.client.gui; | 1 | package com.mumfrey.liteloader.client.gui; |
| 2 | 2 | ||
| 3 | -import static com.mumfrey.liteloader.client.util.GL.*; | ||
| 4 | -import static com.mumfrey.liteloader.client.util.GLClippingPlanes.*; | 3 | +import static com.mumfrey.liteloader.gl.GL.*; |
| 4 | +import static com.mumfrey.liteloader.gl.GLClippingPlanes.*; | ||
| 5 | import net.minecraft.client.Minecraft; | 5 | import net.minecraft.client.Minecraft; |
| 6 | import net.minecraft.client.gui.GuiButton; | 6 | import net.minecraft.client.gui.GuiButton; |
| 7 | 7 |
java/client/com/mumfrey/liteloader/client/gui/startup/LoadingBar.java
| 1 | package com.mumfrey.liteloader.client.gui.startup; | 1 | package com.mumfrey.liteloader.client.gui.startup; |
| 2 | 2 | ||
| 3 | -import static com.mumfrey.liteloader.client.util.GL.*; | 3 | +import static com.mumfrey.liteloader.gl.GL.*; |
| 4 | 4 | ||
| 5 | import java.awt.image.BufferedImage; | 5 | import java.awt.image.BufferedImage; |
| 6 | import java.io.IOException; | 6 | import java.io.IOException; |
java/client/com/mumfrey/liteloader/client/util/GL.java renamed to java/client/com/mumfrey/liteloader/gl/GL.java
java/client/com/mumfrey/liteloader/client/util/GLClippingPlanes.java renamed to java/client/com/mumfrey/liteloader/gl/GLClippingPlanes.java