diff options
Diffstat (limited to 'src/main/java/rosegoldaddons/utils/RenderUtils.java')
-rw-r--r-- | src/main/java/rosegoldaddons/utils/RenderUtils.java | 20 |
1 files changed, 19 insertions, 1 deletions
diff --git a/src/main/java/rosegoldaddons/utils/RenderUtils.java b/src/main/java/rosegoldaddons/utils/RenderUtils.java index d6a7f8f..9d314a3 100644 --- a/src/main/java/rosegoldaddons/utils/RenderUtils.java +++ b/src/main/java/rosegoldaddons/utils/RenderUtils.java @@ -3,6 +3,7 @@ package rosegoldaddons.utils; import net.minecraft.block.Block; import net.minecraft.client.Minecraft; import net.minecraft.client.gui.FontRenderer; +import net.minecraft.client.gui.Gui; import net.minecraft.client.gui.ScaledResolution; import net.minecraft.client.renderer.GlStateManager; import net.minecraft.client.renderer.Tessellator; @@ -111,7 +112,6 @@ public class RenderUtils { drawSelectionBoundingBox(axisAlignedBB); - GL11.glColor4f(1.0f, 1.0f, 1.0f, 1.0f); glDepthMask(true); resetCaps(); @@ -653,6 +653,24 @@ public class RenderUtils { glScissor((int) (x * factor), (int) ((scaledResolution.getScaledHeight() - y2) * factor), (int) ((x2 - x) * factor), (int) ((y2 - y) * factor)); } + + public static void drawRectangle(int x, int y, int width, int height) { + glEnable(GL_BLEND); + glColor3f(0,0,0); + glRecti(x, y, width, height); + glFlush(); + } + + public static void drawTexture(ResourceLocation resourceLocation, int x, int y, int width, int height, int textureWidth, int textureHeight, int textureX, int textureY) { + Main.mc.getTextureManager().bindTexture(resourceLocation); + GlStateManager.color(255, 255, 255); + Gui.drawModalRectWithCustomSizedTexture(x, y, textureX, textureY, width, height, textureWidth, textureHeight); + } + + public static void drawTexture(ResourceLocation resourceLocation, int x, int y, int width, int height) { + drawTexture(resourceLocation, x, y, width, height, width, height, 0, 0); + } + /** * Modified from NotEnoughUpdates under Creative Commons Attribution-NonCommercial 3.0 * https://github.com/Moulberry/NotEnoughUpdates/blob/master/LICENSE |