VulkanShader_1.21.10-0.0.4-alpha.jar
Download file
package net.vulkanmod.config.gui.render;
import com.mojang.blaze3d.pipeline.RenderPipeline;
import java.util.List;
import net.minecraft.class_11231;
import net.minecraft.class_2561;
import net.minecraft.class_287;
import net.minecraft.class_310;
import net.minecraft.class_327;
import net.minecraft.class_332;
import net.minecraft.class_4587;
import net.minecraft.class_5481;
import org.joml.Matrix3x2f;
public abstract class GuiRenderer {
public static class_310 minecraft;
public static class_332 guiGraphics;
public static class_4587 pose;
public static class_287 bufferBuilder;
public static void enableScissor(int i, int j, int k, int l) {
guiGraphics.method_44379(i, j, k, l);
}
public static void disableScissor() {
guiGraphics.method_44380();
}
public static void fillBox(int x0, int y0, int width, int height, int color) {
fill(x0, y0, x0 + width, y0 + height, 0, color);
}
public static void fill(int x0, int y0, int x1, int y1, int color) {
fill(x0, y0, x1, y1, 0, color);
}
public static void fill(int x0, int y0, int x1, int y1, int z, int color) {
guiGraphics.method_25294(x0, y0, x1, y1, color);
}
public static void fillGradient(int x0, int y0, int x1, int y1, int color1, int color2) {
fillGradient(x0, y0, x1, y1, 0, color1, color2);
}
public static void fillGradient(int x0, int y0, int x1, int y1, int z, int color1, int color2) {
guiGraphics.method_25296(x0, y0, x1, y1, color1, color2);
}
public static void renderBoxBorder(int x0, int y0, int width, int height, int borderWidth, int color) {
renderBorder(x0, y0, x0 + width, y0 + height, borderWidth, color);
}
public static void renderBorder(int x0, int y0, int x1, int y1, int width, int color) {
fill(x0, y0, x1, y0 + width, color);
fill(x0, y1 - width, x1, y1, color);
fill(x0, y0 + width, x0 + width, y1 - width, color);
fill(x1 - width, y0 + width, x1, y1 - width, color);
}
public static void drawString(class_327 font, class_2561 component, int x, int y, int color) {
drawString(font, component.method_30937(), x, y, color);
}
public static void drawString(class_327 font, class_5481 formattedCharSequence, int x, int y, int color) {
guiGraphics.method_35720(font, formattedCharSequence, x, y, color);
}
public static void drawString(class_327 font, class_2561 component, int x, int y, int color, boolean shadow) {
drawString(font, component.method_30937(), x, y, color, shadow);
}
public static void drawString(class_327 font, class_5481 formattedCharSequence, int x, int y, int color, boolean shadow) {
guiGraphics.method_51430(font, formattedCharSequence, x, y, color, shadow);
}
public static void drawCenteredString(class_327 font, class_2561 component, int x, int y, int color) {
class_5481 formattedCharSequence = component.method_30937();
guiGraphics.method_35720(font, formattedCharSequence, x - font.method_30880(formattedCharSequence) / 2, y, color);
}
public static int getMaxTextWidth(class_327 font, List<class_5481> list) {
int maxWidth = 0;
for(class_5481 text : list) {
int width = font.method_30880(text);
if (width > maxWidth) {
maxWidth = width;
}
}
return maxWidth;
}
public static void submitPolygon(RenderPipeline renderPipeline, class_11231 textureSetup, float[][] vertices, int color) {
guiGraphics.field_59826.method_70919(new PolygonRenderState(renderPipeline, textureSetup, new Matrix3x2f(), vertices, color, guiGraphics.field_44659.method_70863()));
}
}
Download file