Package com.mojang.blaze3d.systems
Class RenderSystem
java.lang.Object
com.mojang.blaze3d.systems.RenderSystem
@Environment(CLIENT) public class RenderSystem extends Object
- Mappings:
Namespace Name official com/mojang/blaze3d/systems/RenderSystem
intermediary com/mojang/blaze3d/systems/RenderSystem
named com/mojang/blaze3d/systems/RenderSystem
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
RenderSystem.IndexBuffer
-
Field Summary
Fields Modifier and Type Field Description static float
DEFAULTALPHACUTOFF
private static Thread
gameThread
private static boolean
isInInit
private static boolean
isReplayingQueue
private static double
lastDrawTime
private static Logger
LOGGER
private static int
MAX_SUPPORTED_TEXTURE_SIZE
private static int
MINIMUM_ATLAS_TEXTURE_SIZE
private static ConcurrentLinkedQueue<RenderCall>
recordingQueue
private static Tessellator
RENDER_THREAD_TESSELATOR
private static Thread
renderThread
private static RenderSystem.IndexBuffer
sharedSequential
private static RenderSystem.IndexBuffer
sharedSequentialQuad
-
Constructor Summary
Constructors Constructor Description RenderSystem()
-
Method Summary
Modifier and Type Method Description static void
activeTexture(int texture)
static void
alphaFunc(int func, float ref)
Deprecated.static void
assertThread(Supplier<Boolean> check)
static void
beginInitialization()
static void
bindTexture(int texture)
static void
blendColor(float red, float green, float blue, float alpha)
static void
blendEquation(int mode)
static void
blendFunc(int srcFactor, int dstFactor)
static void
blendFunc(GlStateManager.SrcFactor srcFactor, GlStateManager.DstFactor dstFactor)
static void
blendFuncSeparate(int srcFactorRGB, int dstFactorRGB, int srcFactorAlpha, int dstFactorAlpha)
static void
blendFuncSeparate(GlStateManager.SrcFactor srcFactor, GlStateManager.DstFactor dstFactor, GlStateManager.SrcFactor srcAlpha, GlStateManager.DstFactor dstAlpha)
static void
clear(int mask, boolean getError)
static void
clearColor(float red, float green, float blue, float alpha)
static void
clearCurrentColor()
Deprecated.static void
clearDepth(double depth)
static void
clearStencil(int int2)
static void
clearTexGen()
static void
color3f(float red, float green, float blue)
Deprecated.static void
color4f(float red, float green, float blue, float alpha)
Deprecated.static void
colorMask(boolean red, boolean green, boolean blue, boolean alpha)
static void
colorMaterial(int face, int mode)
Deprecated.static void
defaultAlphaFunc()
static void
defaultBlendFunc()
static void
deleteTexture(int texture)
static void
depthFunc(int func)
static void
depthMask(boolean mask)
static void
disableAlphaTest()
Deprecated.static void
disableBlend()
static void
disableColorLogicOp()
static void
disableColorMaterial()
Deprecated.static void
disableCull()
static void
disableDepthTest()
static void
disableFog()
Deprecated.static void
disableLighting()
Deprecated.static void
disableLineOffset()
static void
disablePolygonOffset()
static void
disableRescaleNormal()
Deprecated.static void
disableScissor()
static void
disableTexture()
static void
drawElements(int mode, int first, int count)
static void
enableAlphaTest()
Deprecated.static void
enableBlend()
static void
enableColorLogicOp()
static void
enableColorMaterial()
Deprecated.static void
enableCull()
static void
enableDepthTest()
static void
enableFog()
Deprecated.static void
enableLighting()
Deprecated.static void
enableLineOffset()
static void
enablePolygonOffset()
static void
enableRescaleNormal()
Deprecated.static void
enableScissor(int int2, int int3, int int4, int int5)
static void
enableTexture()
static void
finishInitialization()
static void
flipFrame(long window)
static void
fog(int pname, float red, float green, float blue, float alpha)
Deprecated.static void
fogDensity(float density)
Deprecated.static void
fogEnd(float end)
Deprecated.static void
fogi(int int2, int int3)
Deprecated.static void
fogMode(int int2)
Deprecated.static void
fogMode(GlStateManager.FogMode mode)
Deprecated.static void
fogStart(float start)
Deprecated.static String
getApiDescription()
static String
getBackendDescription()
static String
getCapsString()
static RenderSystem.IndexBuffer
getSequentialBuffer(VertexFormat.DrawMode drawMode, int int2)
static void
getString(int name, Consumer<String> consumer)
static void
glBindBuffer(int target, Supplier<Integer> buffer)
static void
glBufferData(int target, ByteBuffer data, int usage)
static void
glDeleteBuffers(int buffer)
static void
glGenBuffers(Consumer<Integer> consumer)
static void
glMultiTexCoord2f(int texture, float s, float t)
Deprecated.static void
glUniform1(int location, FloatBuffer value)
static void
glUniform1(int location, IntBuffer value)
static void
glUniform1i(int location, int value)
static void
glUniform2(int location, FloatBuffer value)
static void
glUniform2(int location, IntBuffer value)
static void
glUniform3(int location, FloatBuffer value)
static void
glUniform3(int location, IntBuffer value)
static void
glUniform4(int location, FloatBuffer value)
static void
glUniform4(int location, IntBuffer value)
static void
glUniformMatrix2(int location, boolean transpose, FloatBuffer value)
static void
glUniformMatrix3(int location, boolean transpose, FloatBuffer value)
static void
glUniformMatrix4(int location, boolean transpose, FloatBuffer value)
static LongSupplier
initBackendSystem()
static void
initGameThread(boolean assertNotRenderThread)
static void
initRenderer(int debugVerbosity, boolean debugSync)
static void
initRenderThread()
static boolean
isInInitPhase()
static boolean
isOnGameThread()
static boolean
isOnGameThreadOrInit()
static boolean
isOnRenderThread()
static boolean
isOnRenderThreadOrInit()
static void
limitDisplayFPS(int fps)
static void
lineWidth(float width)
static void
loadIdentity()
Deprecated.static void
logicOp(GlStateManager.LogicOp op)
static void
matrixMode(int mode)
Deprecated.static int
maxSupportedTextureSize()
static void
mulTextureByProjModelView()
static void
multMatrix(Matrix4f matrix)
Deprecated.static void
normal3f(float nx, float ny, float nz)
Deprecated.static void
ortho(double l, double r, double b, double t, double n, double f)
Deprecated.static void
pixelStore(int pname, int param)
static void
pixelTransfer(int int2, float float2)
static void
polygonMode(int int2, int int3)
static void
polygonOffset(float factor, float units)
static void
popAttributes()
Deprecated.static void
popMatrix()
Deprecated.static void
pushLightingAttributes()
Deprecated.static void
pushMatrix()
Deprecated.static void
pushTextureAttributes()
Deprecated.static void
readPixels(int x, int y, int width, int height, int format, int type, ByteBuffer pixels)
static void
recordRenderCall(RenderCall renderCall)
static void
renderCrosshair(int size)
static Tessellator
renderThreadTesselator()
static void
replayQueue()
static void
rotatef(float angle, float x, float y, float z)
Deprecated.static void
runAsFancy(Runnable runnable)
Deprecated.static void
scaled(double x, double y, double z)
Deprecated.static void
scalef(float x, float y, float z)
Deprecated.static void
setErrorCallback(GLFWErrorCallbackI callback)
static void
setupDefaultState(int x, int y, int width, int height)
static void
setupEndPortalTexGen()
static void
setupGui3DDiffuseLighting(Vec3f vec3f, Vec3f vec3f2)
static void
setupGuiFlatDiffuseLighting(Vec3f vec3f, Vec3f vec3f2)
static void
setupLevelDiffuseLighting(Vec3f vec3f, Vec3f vec3f2, Matrix4f matrix4f)
static void
setupNvFogDistance()
static void
setupOutline()
static void
setupOverlayColor(IntSupplier texture, int size)
static void
shadeModel(int mode)
Deprecated.static void
stencilFunc(int func, int ref, int mask)
static void
stencilMask(int int2)
static void
stencilOp(int sfail, int dpfail, int dppass)
static void
teardownOutline()
static void
teardownOverlayColor()
static void
texParameter(int target, int pname, int param)
static void
translated(double x, double y, double z)
Deprecated.static void
translatef(float x, float y, float z)
Deprecated.static void
viewport(int x, int y, int width, int height)
-
Field Details
-
LOGGER
- Mappings:
Namespace Name Mixin selector official LOGGER
Lcom/mojang/blaze3d/systems/RenderSystem;LOGGER:Lorg/apache/logging/log4j/Logger;
intermediary LOGGER
Lcom/mojang/blaze3d/systems/RenderSystem;LOGGER:Lorg/apache/logging/log4j/Logger;
named LOGGER
Lcom/mojang/blaze3d/systems/RenderSystem;LOGGER:Lorg/apache/logging/log4j/Logger;
-
recordingQueue
- Mappings:
Namespace Name Mixin selector official recordingQueue
Lcom/mojang/blaze3d/systems/RenderSystem;recordingQueue:Ljava/util/concurrent/ConcurrentLinkedQueue;
intermediary recordingQueue
Lcom/mojang/blaze3d/systems/RenderSystem;recordingQueue:Ljava/util/concurrent/ConcurrentLinkedQueue;
named recordingQueue
Lcom/mojang/blaze3d/systems/RenderSystem;recordingQueue:Ljava/util/concurrent/ConcurrentLinkedQueue;
-
RENDER_THREAD_TESSELATOR
- Mappings:
Namespace Name Mixin selector official RENDER_THREAD_TESSELATOR
Lcom/mojang/blaze3d/systems/RenderSystem;RENDER_THREAD_TESSELATOR:Ldlt;
intermediary RENDER_THREAD_TESSELATOR
Lcom/mojang/blaze3d/systems/RenderSystem;RENDER_THREAD_TESSELATOR:Lnet/minecraft/class_289;
named RENDER_THREAD_TESSELATOR
Lcom/mojang/blaze3d/systems/RenderSystem;RENDER_THREAD_TESSELATOR:Lnet/minecraft/client/render/Tessellator;
-
DEFAULTALPHACUTOFF
public static final float DEFAULTALPHACUTOFF- See Also:
- Constant Field Values
- Mappings:
Namespace Name Mixin selector official DEFAULTALPHACUTOFF
Lcom/mojang/blaze3d/systems/RenderSystem;DEFAULTALPHACUTOFF:F
intermediary DEFAULTALPHACUTOFF
Lcom/mojang/blaze3d/systems/RenderSystem;DEFAULTALPHACUTOFF:F
named DEFAULTALPHACUTOFF
Lcom/mojang/blaze3d/systems/RenderSystem;DEFAULTALPHACUTOFF:F
-
MINIMUM_ATLAS_TEXTURE_SIZE
private static final int MINIMUM_ATLAS_TEXTURE_SIZE- See Also:
- Constant Field Values
- Mappings:
Namespace Name Mixin selector official MINIMUM_ATLAS_TEXTURE_SIZE
Lcom/mojang/blaze3d/systems/RenderSystem;MINIMUM_ATLAS_TEXTURE_SIZE:I
intermediary MINIMUM_ATLAS_TEXTURE_SIZE
Lcom/mojang/blaze3d/systems/RenderSystem;MINIMUM_ATLAS_TEXTURE_SIZE:I
named MINIMUM_ATLAS_TEXTURE_SIZE
Lcom/mojang/blaze3d/systems/RenderSystem;MINIMUM_ATLAS_TEXTURE_SIZE:I
-
isReplayingQueue
private static boolean isReplayingQueue- Mappings:
Namespace Name Mixin selector official isReplayingQueue
Lcom/mojang/blaze3d/systems/RenderSystem;isReplayingQueue:Z
intermediary isReplayingQueue
Lcom/mojang/blaze3d/systems/RenderSystem;isReplayingQueue:Z
named isReplayingQueue
Lcom/mojang/blaze3d/systems/RenderSystem;isReplayingQueue:Z
-
gameThread
- Mappings:
Namespace Name Mixin selector official gameThread
Lcom/mojang/blaze3d/systems/RenderSystem;gameThread:Ljava/lang/Thread;
intermediary gameThread
Lcom/mojang/blaze3d/systems/RenderSystem;gameThread:Ljava/lang/Thread;
named gameThread
Lcom/mojang/blaze3d/systems/RenderSystem;gameThread:Ljava/lang/Thread;
-
renderThread
- Mappings:
Namespace Name Mixin selector official renderThread
Lcom/mojang/blaze3d/systems/RenderSystem;renderThread:Ljava/lang/Thread;
intermediary renderThread
Lcom/mojang/blaze3d/systems/RenderSystem;renderThread:Ljava/lang/Thread;
named renderThread
Lcom/mojang/blaze3d/systems/RenderSystem;renderThread:Ljava/lang/Thread;
-
MAX_SUPPORTED_TEXTURE_SIZE
private static int MAX_SUPPORTED_TEXTURE_SIZE- Mappings:
Namespace Name Mixin selector official MAX_SUPPORTED_TEXTURE_SIZE
Lcom/mojang/blaze3d/systems/RenderSystem;MAX_SUPPORTED_TEXTURE_SIZE:I
intermediary MAX_SUPPORTED_TEXTURE_SIZE
Lcom/mojang/blaze3d/systems/RenderSystem;MAX_SUPPORTED_TEXTURE_SIZE:I
named MAX_SUPPORTED_TEXTURE_SIZE
Lcom/mojang/blaze3d/systems/RenderSystem;MAX_SUPPORTED_TEXTURE_SIZE:I
-
isInInit
private static boolean isInInit- Mappings:
Namespace Name Mixin selector official isInInit
Lcom/mojang/blaze3d/systems/RenderSystem;isInInit:Z
intermediary isInInit
Lcom/mojang/blaze3d/systems/RenderSystem;isInInit:Z
named isInInit
Lcom/mojang/blaze3d/systems/RenderSystem;isInInit:Z
-
lastDrawTime
private static double lastDrawTime- Mappings:
Namespace Name Mixin selector official lastDrawTime
Lcom/mojang/blaze3d/systems/RenderSystem;lastDrawTime:D
intermediary lastDrawTime
Lcom/mojang/blaze3d/systems/RenderSystem;lastDrawTime:D
named lastDrawTime
Lcom/mojang/blaze3d/systems/RenderSystem;lastDrawTime:D
-
-
Constructor Details
-
RenderSystem
public RenderSystem()
-
-
Method Details
-
initRenderThread
public static void initRenderThread()- Mappings:
Namespace Name Mixin selector official initRenderThread
Lcom/mojang/blaze3d/systems/RenderSystem;initRenderThread()V
intermediary initRenderThread
Lcom/mojang/blaze3d/systems/RenderSystem;initRenderThread()V
named initRenderThread
Lcom/mojang/blaze3d/systems/RenderSystem;initRenderThread()V
-
isOnRenderThread
public static boolean isOnRenderThread()- Mappings:
Namespace Name Mixin selector official isOnRenderThread
Lcom/mojang/blaze3d/systems/RenderSystem;isOnRenderThread()Z
intermediary isOnRenderThread
Lcom/mojang/blaze3d/systems/RenderSystem;isOnRenderThread()Z
named isOnRenderThread
Lcom/mojang/blaze3d/systems/RenderSystem;isOnRenderThread()Z
-
isOnRenderThreadOrInit
public static boolean isOnRenderThreadOrInit()- Mappings:
Namespace Name Mixin selector official isOnRenderThreadOrInit
Lcom/mojang/blaze3d/systems/RenderSystem;isOnRenderThreadOrInit()Z
intermediary isOnRenderThreadOrInit
Lcom/mojang/blaze3d/systems/RenderSystem;isOnRenderThreadOrInit()Z
named isOnRenderThreadOrInit
Lcom/mojang/blaze3d/systems/RenderSystem;isOnRenderThreadOrInit()Z
-
initGameThread
public static void initGameThread(boolean assertNotRenderThread)- Mappings:
Namespace Name Mixin selector official initGameThread
Lcom/mojang/blaze3d/systems/RenderSystem;initGameThread(Z)V
intermediary initGameThread
Lcom/mojang/blaze3d/systems/RenderSystem;initGameThread(Z)V
named initGameThread
Lcom/mojang/blaze3d/systems/RenderSystem;initGameThread(Z)V
-
isOnGameThread
public static boolean isOnGameThread()- Mappings:
Namespace Name Mixin selector official isOnGameThread
Lcom/mojang/blaze3d/systems/RenderSystem;isOnGameThread()Z
intermediary isOnGameThread
Lcom/mojang/blaze3d/systems/RenderSystem;isOnGameThread()Z
named isOnGameThread
Lcom/mojang/blaze3d/systems/RenderSystem;isOnGameThread()Z
-
isOnGameThreadOrInit
public static boolean isOnGameThreadOrInit()- Mappings:
Namespace Name Mixin selector official isOnGameThreadOrInit
Lcom/mojang/blaze3d/systems/RenderSystem;isOnGameThreadOrInit()Z
intermediary isOnGameThreadOrInit
Lcom/mojang/blaze3d/systems/RenderSystem;isOnGameThreadOrInit()Z
named isOnGameThreadOrInit
Lcom/mojang/blaze3d/systems/RenderSystem;isOnGameThreadOrInit()Z
-
assertThread
- Mappings:
Namespace Name Mixin selector official assertThread
Lcom/mojang/blaze3d/systems/RenderSystem;assertThread(Ljava/util/function/Supplier;)V
intermediary assertThread
Lcom/mojang/blaze3d/systems/RenderSystem;assertThread(Ljava/util/function/Supplier;)V
named assertThread
Lcom/mojang/blaze3d/systems/RenderSystem;assertThread(Ljava/util/function/Supplier;)V
-
isInInitPhase
public static boolean isInInitPhase()- Mappings:
Namespace Name Mixin selector official isInInitPhase
Lcom/mojang/blaze3d/systems/RenderSystem;isInInitPhase()Z
intermediary isInInitPhase
Lcom/mojang/blaze3d/systems/RenderSystem;isInInitPhase()Z
named isInInitPhase
Lcom/mojang/blaze3d/systems/RenderSystem;isInInitPhase()Z
-
recordRenderCall
- Mappings:
Namespace Name Mixin selector official recordRenderCall
Lcom/mojang/blaze3d/systems/RenderSystem;recordRenderCall(Ldkj;)V
intermediary recordRenderCall
Lcom/mojang/blaze3d/systems/RenderSystem;recordRenderCall(Lnet/minecraft/class_4573;)V
named recordRenderCall
Lcom/mojang/blaze3d/systems/RenderSystem;recordRenderCall(Lcom/mojang/blaze3d/systems/RenderCall;)V
-
flipFrame
public static void flipFrame(long window)- Mappings:
Namespace Name Mixin selector official flipFrame
Lcom/mojang/blaze3d/systems/RenderSystem;flipFrame(J)V
intermediary flipFrame
Lcom/mojang/blaze3d/systems/RenderSystem;flipFrame(J)V
named flipFrame
Lcom/mojang/blaze3d/systems/RenderSystem;flipFrame(J)V
-
replayQueue
public static void replayQueue()- Mappings:
Namespace Name Mixin selector official replayQueue
Lcom/mojang/blaze3d/systems/RenderSystem;replayQueue()V
intermediary replayQueue
Lcom/mojang/blaze3d/systems/RenderSystem;replayQueue()V
named replayQueue
Lcom/mojang/blaze3d/systems/RenderSystem;replayQueue()V
-
limitDisplayFPS
public static void limitDisplayFPS(int fps)- Mappings:
Namespace Name Mixin selector official limitDisplayFPS
Lcom/mojang/blaze3d/systems/RenderSystem;limitDisplayFPS(I)V
intermediary limitDisplayFPS
Lcom/mojang/blaze3d/systems/RenderSystem;limitDisplayFPS(I)V
named limitDisplayFPS
Lcom/mojang/blaze3d/systems/RenderSystem;limitDisplayFPS(I)V
-
pushLightingAttributes
Deprecated.- Mappings:
Namespace Name Mixin selector official pushLightingAttributes
Lcom/mojang/blaze3d/systems/RenderSystem;pushLightingAttributes()V
intermediary pushLightingAttributes
Lcom/mojang/blaze3d/systems/RenderSystem;pushLightingAttributes()V
named pushLightingAttributes
Lcom/mojang/blaze3d/systems/RenderSystem;pushLightingAttributes()V
-
pushTextureAttributes
Deprecated.- Mappings:
Namespace Name Mixin selector official pushTextureAttributes
Lcom/mojang/blaze3d/systems/RenderSystem;pushTextureAttributes()V
intermediary pushTextureAttributes
Lcom/mojang/blaze3d/systems/RenderSystem;pushTextureAttributes()V
named pushTextureAttributes
Lcom/mojang/blaze3d/systems/RenderSystem;pushTextureAttributes()V
-
popAttributes
Deprecated.- Mappings:
Namespace Name Mixin selector official popAttributes
Lcom/mojang/blaze3d/systems/RenderSystem;popAttributes()V
intermediary popAttributes
Lcom/mojang/blaze3d/systems/RenderSystem;popAttributes()V
named popAttributes
Lcom/mojang/blaze3d/systems/RenderSystem;popAttributes()V
-
disableAlphaTest
Deprecated.- Mappings:
Namespace Name Mixin selector official disableAlphaTest
Lcom/mojang/blaze3d/systems/RenderSystem;disableAlphaTest()V
intermediary disableAlphaTest
Lcom/mojang/blaze3d/systems/RenderSystem;disableAlphaTest()V
named disableAlphaTest
Lcom/mojang/blaze3d/systems/RenderSystem;disableAlphaTest()V
-
enableAlphaTest
Deprecated.- Mappings:
Namespace Name Mixin selector official enableAlphaTest
Lcom/mojang/blaze3d/systems/RenderSystem;enableAlphaTest()V
intermediary enableAlphaTest
Lcom/mojang/blaze3d/systems/RenderSystem;enableAlphaTest()V
named enableAlphaTest
Lcom/mojang/blaze3d/systems/RenderSystem;enableAlphaTest()V
-
alphaFunc
Deprecated.- Mappings:
Namespace Name Mixin selector official alphaFunc
Lcom/mojang/blaze3d/systems/RenderSystem;alphaFunc(IF)V
intermediary alphaFunc
Lcom/mojang/blaze3d/systems/RenderSystem;alphaFunc(IF)V
named alphaFunc
Lcom/mojang/blaze3d/systems/RenderSystem;alphaFunc(IF)V
-
enableLighting
Deprecated.- Mappings:
Namespace Name Mixin selector official enableLighting
Lcom/mojang/blaze3d/systems/RenderSystem;enableLighting()V
intermediary enableLighting
Lcom/mojang/blaze3d/systems/RenderSystem;enableLighting()V
named enableLighting
Lcom/mojang/blaze3d/systems/RenderSystem;enableLighting()V
-
disableLighting
Deprecated.- Mappings:
Namespace Name Mixin selector official disableLighting
Lcom/mojang/blaze3d/systems/RenderSystem;disableLighting()V
intermediary disableLighting
Lcom/mojang/blaze3d/systems/RenderSystem;disableLighting()V
named disableLighting
Lcom/mojang/blaze3d/systems/RenderSystem;disableLighting()V
-
enableColorMaterial
Deprecated.- Mappings:
Namespace Name Mixin selector official enableColorMaterial
Lcom/mojang/blaze3d/systems/RenderSystem;enableColorMaterial()V
intermediary enableColorMaterial
Lcom/mojang/blaze3d/systems/RenderSystem;enableColorMaterial()V
named enableColorMaterial
Lcom/mojang/blaze3d/systems/RenderSystem;enableColorMaterial()V
-
disableColorMaterial
Deprecated.- Mappings:
Namespace Name Mixin selector official disableColorMaterial
Lcom/mojang/blaze3d/systems/RenderSystem;disableColorMaterial()V
intermediary disableColorMaterial
Lcom/mojang/blaze3d/systems/RenderSystem;disableColorMaterial()V
named disableColorMaterial
Lcom/mojang/blaze3d/systems/RenderSystem;disableColorMaterial()V
-
colorMaterial
Deprecated.- Mappings:
Namespace Name Mixin selector official colorMaterial
Lcom/mojang/blaze3d/systems/RenderSystem;colorMaterial(II)V
intermediary colorMaterial
Lcom/mojang/blaze3d/systems/RenderSystem;colorMaterial(II)V
named colorMaterial
Lcom/mojang/blaze3d/systems/RenderSystem;colorMaterial(II)V
-
normal3f
Deprecated.- Mappings:
Namespace Name Mixin selector official normal3f
Lcom/mojang/blaze3d/systems/RenderSystem;normal3f(FFF)V
intermediary normal3f
Lcom/mojang/blaze3d/systems/RenderSystem;normal3f(FFF)V
named normal3f
Lcom/mojang/blaze3d/systems/RenderSystem;normal3f(FFF)V
-
disableDepthTest
public static void disableDepthTest()- Mappings:
Namespace Name Mixin selector official disableDepthTest
Lcom/mojang/blaze3d/systems/RenderSystem;disableDepthTest()V
intermediary disableDepthTest
Lcom/mojang/blaze3d/systems/RenderSystem;disableDepthTest()V
named disableDepthTest
Lcom/mojang/blaze3d/systems/RenderSystem;disableDepthTest()V
-
enableDepthTest
public static void enableDepthTest()- Mappings:
Namespace Name Mixin selector official enableDepthTest
Lcom/mojang/blaze3d/systems/RenderSystem;enableDepthTest()V
intermediary enableDepthTest
Lcom/mojang/blaze3d/systems/RenderSystem;enableDepthTest()V
named enableDepthTest
Lcom/mojang/blaze3d/systems/RenderSystem;enableDepthTest()V
-
enableScissor
public static void enableScissor(int int2, int int3, int int4, int int5)- Mappings:
Namespace Name Mixin selector official enableScissor
Lcom/mojang/blaze3d/systems/RenderSystem;enableScissor(IIII)V
intermediary enableScissor
Lcom/mojang/blaze3d/systems/RenderSystem;enableScissor(IIII)V
named enableScissor
Lcom/mojang/blaze3d/systems/RenderSystem;enableScissor(IIII)V
-
disableScissor
public static void disableScissor()- Mappings:
Namespace Name Mixin selector official disableScissor
Lcom/mojang/blaze3d/systems/RenderSystem;disableScissor()V
intermediary disableScissor
Lcom/mojang/blaze3d/systems/RenderSystem;disableScissor()V
named disableScissor
Lcom/mojang/blaze3d/systems/RenderSystem;disableScissor()V
-
depthFunc
public static void depthFunc(int func)- Mappings:
Namespace Name Mixin selector official depthFunc
Lcom/mojang/blaze3d/systems/RenderSystem;depthFunc(I)V
intermediary depthFunc
Lcom/mojang/blaze3d/systems/RenderSystem;depthFunc(I)V
named depthFunc
Lcom/mojang/blaze3d/systems/RenderSystem;depthFunc(I)V
-
depthMask
public static void depthMask(boolean mask)- Mappings:
Namespace Name Mixin selector official depthMask
Lcom/mojang/blaze3d/systems/RenderSystem;depthMask(Z)V
intermediary depthMask
Lcom/mojang/blaze3d/systems/RenderSystem;depthMask(Z)V
named depthMask
Lcom/mojang/blaze3d/systems/RenderSystem;depthMask(Z)V
-
enableBlend
public static void enableBlend()- Mappings:
Namespace Name Mixin selector official enableBlend
Lcom/mojang/blaze3d/systems/RenderSystem;enableBlend()V
intermediary enableBlend
Lcom/mojang/blaze3d/systems/RenderSystem;enableBlend()V
named enableBlend
Lcom/mojang/blaze3d/systems/RenderSystem;enableBlend()V
-
disableBlend
public static void disableBlend()- Mappings:
Namespace Name Mixin selector official disableBlend
Lcom/mojang/blaze3d/systems/RenderSystem;disableBlend()V
intermediary disableBlend
Lcom/mojang/blaze3d/systems/RenderSystem;disableBlend()V
named disableBlend
Lcom/mojang/blaze3d/systems/RenderSystem;disableBlend()V
-
blendFunc
public static void blendFunc(GlStateManager.SrcFactor srcFactor, GlStateManager.DstFactor dstFactor)- Mappings:
Namespace Name Mixin selector official blendFunc
Lcom/mojang/blaze3d/systems/RenderSystem;blendFunc(Ldkr$r;Ldkr$j;)V
intermediary blendFunc
Lcom/mojang/blaze3d/systems/RenderSystem;blendFunc(Lnet/minecraft/class_4493$class_4535;Lnet/minecraft/class_4493$class_4534;)V
named blendFunc
Lcom/mojang/blaze3d/systems/RenderSystem;blendFunc(Lcom/mojang/blaze3d/platform/GlStateManager$SrcFactor;Lcom/mojang/blaze3d/platform/GlStateManager$DstFactor;)V
-
blendFunc
public static void blendFunc(int srcFactor, int dstFactor)- Mappings:
Namespace Name Mixin selector official blendFunc
Lcom/mojang/blaze3d/systems/RenderSystem;blendFunc(II)V
intermediary blendFunc
Lcom/mojang/blaze3d/systems/RenderSystem;blendFunc(II)V
named blendFunc
Lcom/mojang/blaze3d/systems/RenderSystem;blendFunc(II)V
-
blendFuncSeparate
public static void blendFuncSeparate(GlStateManager.SrcFactor srcFactor, GlStateManager.DstFactor dstFactor, GlStateManager.SrcFactor srcAlpha, GlStateManager.DstFactor dstAlpha)- Mappings:
Namespace Name Mixin selector official blendFuncSeparate
Lcom/mojang/blaze3d/systems/RenderSystem;blendFuncSeparate(Ldkr$r;Ldkr$j;Ldkr$r;Ldkr$j;)V
intermediary blendFuncSeparate
Lcom/mojang/blaze3d/systems/RenderSystem;blendFuncSeparate(Lnet/minecraft/class_4493$class_4535;Lnet/minecraft/class_4493$class_4534;Lnet/minecraft/class_4493$class_4535;Lnet/minecraft/class_4493$class_4534;)V
named blendFuncSeparate
Lcom/mojang/blaze3d/systems/RenderSystem;blendFuncSeparate(Lcom/mojang/blaze3d/platform/GlStateManager$SrcFactor;Lcom/mojang/blaze3d/platform/GlStateManager$DstFactor;Lcom/mojang/blaze3d/platform/GlStateManager$SrcFactor;Lcom/mojang/blaze3d/platform/GlStateManager$DstFactor;)V
-
blendFuncSeparate
public static void blendFuncSeparate(int srcFactorRGB, int dstFactorRGB, int srcFactorAlpha, int dstFactorAlpha)- Mappings:
Namespace Name Mixin selector official blendFuncSeparate
Lcom/mojang/blaze3d/systems/RenderSystem;blendFuncSeparate(IIII)V
intermediary blendFuncSeparate
Lcom/mojang/blaze3d/systems/RenderSystem;blendFuncSeparate(IIII)V
named blendFuncSeparate
Lcom/mojang/blaze3d/systems/RenderSystem;blendFuncSeparate(IIII)V
-
blendEquation
public static void blendEquation(int mode)- Mappings:
Namespace Name Mixin selector official blendEquation
Lcom/mojang/blaze3d/systems/RenderSystem;blendEquation(I)V
intermediary blendEquation
Lcom/mojang/blaze3d/systems/RenderSystem;blendEquation(I)V
named blendEquation
Lcom/mojang/blaze3d/systems/RenderSystem;blendEquation(I)V
-
blendColor
public static void blendColor(float red, float green, float blue, float alpha)- Mappings:
Namespace Name Mixin selector official blendColor
Lcom/mojang/blaze3d/systems/RenderSystem;blendColor(FFFF)V
intermediary blendColor
Lcom/mojang/blaze3d/systems/RenderSystem;blendColor(FFFF)V
named blendColor
Lcom/mojang/blaze3d/systems/RenderSystem;blendColor(FFFF)V
-
enableFog
Deprecated.- Mappings:
Namespace Name Mixin selector official enableFog
Lcom/mojang/blaze3d/systems/RenderSystem;enableFog()V
intermediary enableFog
Lcom/mojang/blaze3d/systems/RenderSystem;enableFog()V
named enableFog
Lcom/mojang/blaze3d/systems/RenderSystem;enableFog()V
-
disableFog
Deprecated.- Mappings:
Namespace Name Mixin selector official disableFog
Lcom/mojang/blaze3d/systems/RenderSystem;disableFog()V
intermediary disableFog
Lcom/mojang/blaze3d/systems/RenderSystem;disableFog()V
named disableFog
Lcom/mojang/blaze3d/systems/RenderSystem;disableFog()V
-
fogMode
Deprecated.- Mappings:
Namespace Name Mixin selector official fogMode
Lcom/mojang/blaze3d/systems/RenderSystem;fogMode(Ldkr$m;)V
intermediary fogMode
Lcom/mojang/blaze3d/systems/RenderSystem;fogMode(Lnet/minecraft/class_4493$class_1028;)V
named fogMode
Lcom/mojang/blaze3d/systems/RenderSystem;fogMode(Lcom/mojang/blaze3d/platform/GlStateManager$FogMode;)V
-
fogMode
Deprecated.- Mappings:
Namespace Name Mixin selector official fogMode
Lcom/mojang/blaze3d/systems/RenderSystem;fogMode(I)V
intermediary fogMode
Lcom/mojang/blaze3d/systems/RenderSystem;fogMode(I)V
named fogMode
Lcom/mojang/blaze3d/systems/RenderSystem;fogMode(I)V
-
fogDensity
Deprecated.- Mappings:
Namespace Name Mixin selector official fogDensity
Lcom/mojang/blaze3d/systems/RenderSystem;fogDensity(F)V
intermediary fogDensity
Lcom/mojang/blaze3d/systems/RenderSystem;fogDensity(F)V
named fogDensity
Lcom/mojang/blaze3d/systems/RenderSystem;fogDensity(F)V
-
fogStart
Deprecated.- Mappings:
Namespace Name Mixin selector official fogStart
Lcom/mojang/blaze3d/systems/RenderSystem;fogStart(F)V
intermediary fogStart
Lcom/mojang/blaze3d/systems/RenderSystem;fogStart(F)V
named fogStart
Lcom/mojang/blaze3d/systems/RenderSystem;fogStart(F)V
-
fogEnd
Deprecated.- Mappings:
Namespace Name Mixin selector official fogEnd
Lcom/mojang/blaze3d/systems/RenderSystem;fogEnd(F)V
intermediary fogEnd
Lcom/mojang/blaze3d/systems/RenderSystem;fogEnd(F)V
named fogEnd
Lcom/mojang/blaze3d/systems/RenderSystem;fogEnd(F)V
-
fog
Deprecated.- Mappings:
Namespace Name Mixin selector official fog
Lcom/mojang/blaze3d/systems/RenderSystem;fog(IFFFF)V
intermediary fog
Lcom/mojang/blaze3d/systems/RenderSystem;fog(IFFFF)V
named fog
Lcom/mojang/blaze3d/systems/RenderSystem;fog(IFFFF)V
-
fogi
Deprecated.- Mappings:
Namespace Name Mixin selector official fogi
Lcom/mojang/blaze3d/systems/RenderSystem;fogi(II)V
intermediary fogi
Lcom/mojang/blaze3d/systems/RenderSystem;fogi(II)V
named fogi
Lcom/mojang/blaze3d/systems/RenderSystem;fogi(II)V
-
enableCull
public static void enableCull()- Mappings:
Namespace Name Mixin selector official enableCull
Lcom/mojang/blaze3d/systems/RenderSystem;enableCull()V
intermediary enableCull
Lcom/mojang/blaze3d/systems/RenderSystem;enableCull()V
named enableCull
Lcom/mojang/blaze3d/systems/RenderSystem;enableCull()V
-
disableCull
public static void disableCull()- Mappings:
Namespace Name Mixin selector official disableCull
Lcom/mojang/blaze3d/systems/RenderSystem;disableCull()V
intermediary disableCull
Lcom/mojang/blaze3d/systems/RenderSystem;disableCull()V
named disableCull
Lcom/mojang/blaze3d/systems/RenderSystem;disableCull()V
-
polygonMode
public static void polygonMode(int int2, int int3)- Mappings:
Namespace Name Mixin selector official polygonMode
Lcom/mojang/blaze3d/systems/RenderSystem;polygonMode(II)V
intermediary polygonMode
Lcom/mojang/blaze3d/systems/RenderSystem;polygonMode(II)V
named polygonMode
Lcom/mojang/blaze3d/systems/RenderSystem;polygonMode(II)V
-
enablePolygonOffset
public static void enablePolygonOffset()- Mappings:
Namespace Name Mixin selector official enablePolygonOffset
Lcom/mojang/blaze3d/systems/RenderSystem;enablePolygonOffset()V
intermediary enablePolygonOffset
Lcom/mojang/blaze3d/systems/RenderSystem;enablePolygonOffset()V
named enablePolygonOffset
Lcom/mojang/blaze3d/systems/RenderSystem;enablePolygonOffset()V
-
disablePolygonOffset
public static void disablePolygonOffset()- Mappings:
Namespace Name Mixin selector official disablePolygonOffset
Lcom/mojang/blaze3d/systems/RenderSystem;disablePolygonOffset()V
intermediary disablePolygonOffset
Lcom/mojang/blaze3d/systems/RenderSystem;disablePolygonOffset()V
named disablePolygonOffset
Lcom/mojang/blaze3d/systems/RenderSystem;disablePolygonOffset()V
-
enableLineOffset
public static void enableLineOffset()- Mappings:
Namespace Name Mixin selector official enableLineOffset
Lcom/mojang/blaze3d/systems/RenderSystem;enableLineOffset()V
intermediary enableLineOffset
Lcom/mojang/blaze3d/systems/RenderSystem;enableLineOffset()V
named enableLineOffset
Lcom/mojang/blaze3d/systems/RenderSystem;enableLineOffset()V
-
disableLineOffset
public static void disableLineOffset()- Mappings:
Namespace Name Mixin selector official disableLineOffset
Lcom/mojang/blaze3d/systems/RenderSystem;disableLineOffset()V
intermediary disableLineOffset
Lcom/mojang/blaze3d/systems/RenderSystem;disableLineOffset()V
named disableLineOffset
Lcom/mojang/blaze3d/systems/RenderSystem;disableLineOffset()V
-
polygonOffset
public static void polygonOffset(float factor, float units)- Mappings:
Namespace Name Mixin selector official polygonOffset
Lcom/mojang/blaze3d/systems/RenderSystem;polygonOffset(FF)V
intermediary polygonOffset
Lcom/mojang/blaze3d/systems/RenderSystem;polygonOffset(FF)V
named polygonOffset
Lcom/mojang/blaze3d/systems/RenderSystem;polygonOffset(FF)V
-
enableColorLogicOp
public static void enableColorLogicOp()- Mappings:
Namespace Name Mixin selector official enableColorLogicOp
Lcom/mojang/blaze3d/systems/RenderSystem;enableColorLogicOp()V
intermediary enableColorLogicOp
Lcom/mojang/blaze3d/systems/RenderSystem;enableColorLogicOp()V
named enableColorLogicOp
Lcom/mojang/blaze3d/systems/RenderSystem;enableColorLogicOp()V
-
disableColorLogicOp
public static void disableColorLogicOp()- Mappings:
Namespace Name Mixin selector official disableColorLogicOp
Lcom/mojang/blaze3d/systems/RenderSystem;disableColorLogicOp()V
intermediary disableColorLogicOp
Lcom/mojang/blaze3d/systems/RenderSystem;disableColorLogicOp()V
named disableColorLogicOp
Lcom/mojang/blaze3d/systems/RenderSystem;disableColorLogicOp()V
-
logicOp
- Mappings:
Namespace Name Mixin selector official logicOp
Lcom/mojang/blaze3d/systems/RenderSystem;logicOp(Ldkr$o;)V
intermediary logicOp
Lcom/mojang/blaze3d/systems/RenderSystem;logicOp(Lnet/minecraft/class_4493$class_1030;)V
named logicOp
Lcom/mojang/blaze3d/systems/RenderSystem;logicOp(Lcom/mojang/blaze3d/platform/GlStateManager$LogicOp;)V
-
activeTexture
public static void activeTexture(int texture)- Mappings:
Namespace Name Mixin selector official activeTexture
Lcom/mojang/blaze3d/systems/RenderSystem;activeTexture(I)V
intermediary activeTexture
Lcom/mojang/blaze3d/systems/RenderSystem;activeTexture(I)V
named activeTexture
Lcom/mojang/blaze3d/systems/RenderSystem;activeTexture(I)V
-
enableTexture
public static void enableTexture()- Mappings:
Namespace Name Mixin selector official enableTexture
Lcom/mojang/blaze3d/systems/RenderSystem;enableTexture()V
intermediary enableTexture
Lcom/mojang/blaze3d/systems/RenderSystem;enableTexture()V
named enableTexture
Lcom/mojang/blaze3d/systems/RenderSystem;enableTexture()V
-
disableTexture
public static void disableTexture()- Mappings:
Namespace Name Mixin selector official disableTexture
Lcom/mojang/blaze3d/systems/RenderSystem;disableTexture()V
intermediary disableTexture
Lcom/mojang/blaze3d/systems/RenderSystem;disableTexture()V
named disableTexture
Lcom/mojang/blaze3d/systems/RenderSystem;disableTexture()V
-
texParameter
public static void texParameter(int target, int pname, int param)- Mappings:
Namespace Name Mixin selector official texParameter
Lcom/mojang/blaze3d/systems/RenderSystem;texParameter(III)V
intermediary texParameter
Lcom/mojang/blaze3d/systems/RenderSystem;texParameter(III)V
named texParameter
Lcom/mojang/blaze3d/systems/RenderSystem;texParameter(III)V
-
deleteTexture
public static void deleteTexture(int texture)- Mappings:
Namespace Name Mixin selector official deleteTexture
Lcom/mojang/blaze3d/systems/RenderSystem;deleteTexture(I)V
intermediary deleteTexture
Lcom/mojang/blaze3d/systems/RenderSystem;deleteTexture(I)V
named deleteTexture
Lcom/mojang/blaze3d/systems/RenderSystem;deleteTexture(I)V
-
bindTexture
public static void bindTexture(int texture)- Mappings:
Namespace Name Mixin selector official bindTexture
Lcom/mojang/blaze3d/systems/RenderSystem;bindTexture(I)V
intermediary bindTexture
Lcom/mojang/blaze3d/systems/RenderSystem;bindTexture(I)V
named bindTexture
Lcom/mojang/blaze3d/systems/RenderSystem;bindTexture(I)V
-
shadeModel
Deprecated.- Mappings:
Namespace Name Mixin selector official shadeModel
Lcom/mojang/blaze3d/systems/RenderSystem;shadeModel(I)V
intermediary shadeModel
Lcom/mojang/blaze3d/systems/RenderSystem;shadeModel(I)V
named shadeModel
Lcom/mojang/blaze3d/systems/RenderSystem;shadeModel(I)V
-
enableRescaleNormal
Deprecated.- Mappings:
Namespace Name Mixin selector official enableRescaleNormal
Lcom/mojang/blaze3d/systems/RenderSystem;enableRescaleNormal()V
intermediary enableRescaleNormal
Lcom/mojang/blaze3d/systems/RenderSystem;enableRescaleNormal()V
named enableRescaleNormal
Lcom/mojang/blaze3d/systems/RenderSystem;enableRescaleNormal()V
-
disableRescaleNormal
Deprecated.- Mappings:
Namespace Name Mixin selector official disableRescaleNormal
Lcom/mojang/blaze3d/systems/RenderSystem;disableRescaleNormal()V
intermediary disableRescaleNormal
Lcom/mojang/blaze3d/systems/RenderSystem;disableRescaleNormal()V
named disableRescaleNormal
Lcom/mojang/blaze3d/systems/RenderSystem;disableRescaleNormal()V
-
viewport
public static void viewport(int x, int y, int width, int height)- Mappings:
Namespace Name Mixin selector official viewport
Lcom/mojang/blaze3d/systems/RenderSystem;viewport(IIII)V
intermediary viewport
Lcom/mojang/blaze3d/systems/RenderSystem;viewport(IIII)V
named viewport
Lcom/mojang/blaze3d/systems/RenderSystem;viewport(IIII)V
-
colorMask
public static void colorMask(boolean red, boolean green, boolean blue, boolean alpha)- Mappings:
Namespace Name Mixin selector official colorMask
Lcom/mojang/blaze3d/systems/RenderSystem;colorMask(ZZZZ)V
intermediary colorMask
Lcom/mojang/blaze3d/systems/RenderSystem;colorMask(ZZZZ)V
named colorMask
Lcom/mojang/blaze3d/systems/RenderSystem;colorMask(ZZZZ)V
-
stencilFunc
public static void stencilFunc(int func, int ref, int mask)- Mappings:
Namespace Name Mixin selector official stencilFunc
Lcom/mojang/blaze3d/systems/RenderSystem;stencilFunc(III)V
intermediary stencilFunc
Lcom/mojang/blaze3d/systems/RenderSystem;stencilFunc(III)V
named stencilFunc
Lcom/mojang/blaze3d/systems/RenderSystem;stencilFunc(III)V
-
stencilMask
public static void stencilMask(int int2)- Mappings:
Namespace Name Mixin selector official stencilMask
Lcom/mojang/blaze3d/systems/RenderSystem;stencilMask(I)V
intermediary stencilMask
Lcom/mojang/blaze3d/systems/RenderSystem;stencilMask(I)V
named stencilMask
Lcom/mojang/blaze3d/systems/RenderSystem;stencilMask(I)V
-
stencilOp
public static void stencilOp(int sfail, int dpfail, int dppass)- Mappings:
Namespace Name Mixin selector official stencilOp
Lcom/mojang/blaze3d/systems/RenderSystem;stencilOp(III)V
intermediary stencilOp
Lcom/mojang/blaze3d/systems/RenderSystem;stencilOp(III)V
named stencilOp
Lcom/mojang/blaze3d/systems/RenderSystem;stencilOp(III)V
-
clearDepth
public static void clearDepth(double depth)- Mappings:
Namespace Name Mixin selector official clearDepth
Lcom/mojang/blaze3d/systems/RenderSystem;clearDepth(D)V
intermediary clearDepth
Lcom/mojang/blaze3d/systems/RenderSystem;clearDepth(D)V
named clearDepth
Lcom/mojang/blaze3d/systems/RenderSystem;clearDepth(D)V
-
clearColor
public static void clearColor(float red, float green, float blue, float alpha)- Mappings:
Namespace Name Mixin selector official clearColor
Lcom/mojang/blaze3d/systems/RenderSystem;clearColor(FFFF)V
intermediary clearColor
Lcom/mojang/blaze3d/systems/RenderSystem;clearColor(FFFF)V
named clearColor
Lcom/mojang/blaze3d/systems/RenderSystem;clearColor(FFFF)V
-
clearStencil
public static void clearStencil(int int2)- Mappings:
Namespace Name Mixin selector official clearStencil
Lcom/mojang/blaze3d/systems/RenderSystem;clearStencil(I)V
intermediary clearStencil
Lcom/mojang/blaze3d/systems/RenderSystem;clearStencil(I)V
named clearStencil
Lcom/mojang/blaze3d/systems/RenderSystem;clearStencil(I)V
-
clear
public static void clear(int mask, boolean getError)- Mappings:
Namespace Name Mixin selector official clear
Lcom/mojang/blaze3d/systems/RenderSystem;clear(IZ)V
intermediary clear
Lcom/mojang/blaze3d/systems/RenderSystem;clear(IZ)V
named clear
Lcom/mojang/blaze3d/systems/RenderSystem;clear(IZ)V
-
matrixMode
Deprecated.- Mappings:
Namespace Name Mixin selector official matrixMode
Lcom/mojang/blaze3d/systems/RenderSystem;matrixMode(I)V
intermediary matrixMode
Lcom/mojang/blaze3d/systems/RenderSystem;matrixMode(I)V
named matrixMode
Lcom/mojang/blaze3d/systems/RenderSystem;matrixMode(I)V
-
loadIdentity
Deprecated.- Mappings:
Namespace Name Mixin selector official loadIdentity
Lcom/mojang/blaze3d/systems/RenderSystem;loadIdentity()V
intermediary loadIdentity
Lcom/mojang/blaze3d/systems/RenderSystem;loadIdentity()V
named loadIdentity
Lcom/mojang/blaze3d/systems/RenderSystem;loadIdentity()V
-
pushMatrix
Deprecated.- Mappings:
Namespace Name Mixin selector official pushMatrix
Lcom/mojang/blaze3d/systems/RenderSystem;pushMatrix()V
intermediary pushMatrix
Lcom/mojang/blaze3d/systems/RenderSystem;pushMatrix()V
named pushMatrix
Lcom/mojang/blaze3d/systems/RenderSystem;pushMatrix()V
-
popMatrix
Deprecated.- Mappings:
Namespace Name Mixin selector official popMatrix
Lcom/mojang/blaze3d/systems/RenderSystem;popMatrix()V
intermediary popMatrix
Lcom/mojang/blaze3d/systems/RenderSystem;popMatrix()V
named popMatrix
Lcom/mojang/blaze3d/systems/RenderSystem;popMatrix()V
-
ortho
Deprecated.- Mappings:
Namespace Name Mixin selector official ortho
Lcom/mojang/blaze3d/systems/RenderSystem;ortho(DDDDDD)V
intermediary ortho
Lcom/mojang/blaze3d/systems/RenderSystem;ortho(DDDDDD)V
named ortho
Lcom/mojang/blaze3d/systems/RenderSystem;ortho(DDDDDD)V
-
rotatef
Deprecated.- Mappings:
Namespace Name Mixin selector official rotatef
Lcom/mojang/blaze3d/systems/RenderSystem;rotatef(FFFF)V
intermediary rotatef
Lcom/mojang/blaze3d/systems/RenderSystem;rotatef(FFFF)V
named rotatef
Lcom/mojang/blaze3d/systems/RenderSystem;rotatef(FFFF)V
-
scalef
Deprecated.- Mappings:
Namespace Name Mixin selector official scalef
Lcom/mojang/blaze3d/systems/RenderSystem;scalef(FFF)V
intermediary scalef
Lcom/mojang/blaze3d/systems/RenderSystem;scalef(FFF)V
named scalef
Lcom/mojang/blaze3d/systems/RenderSystem;scalef(FFF)V
-
scaled
Deprecated.- Mappings:
Namespace Name Mixin selector official scaled
Lcom/mojang/blaze3d/systems/RenderSystem;scaled(DDD)V
intermediary scaled
Lcom/mojang/blaze3d/systems/RenderSystem;scaled(DDD)V
named scaled
Lcom/mojang/blaze3d/systems/RenderSystem;scaled(DDD)V
-
translatef
Deprecated.- Mappings:
Namespace Name Mixin selector official translatef
Lcom/mojang/blaze3d/systems/RenderSystem;translatef(FFF)V
intermediary translatef
Lcom/mojang/blaze3d/systems/RenderSystem;translatef(FFF)V
named translatef
Lcom/mojang/blaze3d/systems/RenderSystem;translatef(FFF)V
-
translated
Deprecated.- Mappings:
Namespace Name Mixin selector official translated
Lcom/mojang/blaze3d/systems/RenderSystem;translated(DDD)V
intermediary translated
Lcom/mojang/blaze3d/systems/RenderSystem;translated(DDD)V
named translated
Lcom/mojang/blaze3d/systems/RenderSystem;translated(DDD)V
-
multMatrix
Deprecated.- Mappings:
Namespace Name Mixin selector official multMatrix
Lcom/mojang/blaze3d/systems/RenderSystem;multMatrix(Lb;)V
intermediary multMatrix
Lcom/mojang/blaze3d/systems/RenderSystem;multMatrix(Lnet/minecraft/class_1159;)V
named multMatrix
Lcom/mojang/blaze3d/systems/RenderSystem;multMatrix(Lnet/minecraft/util/math/Matrix4f;)V
-
color4f
Deprecated.- Mappings:
Namespace Name Mixin selector official color4f
Lcom/mojang/blaze3d/systems/RenderSystem;color4f(FFFF)V
intermediary color4f
Lcom/mojang/blaze3d/systems/RenderSystem;color4f(FFFF)V
named color4f
Lcom/mojang/blaze3d/systems/RenderSystem;color4f(FFFF)V
-
color3f
Deprecated.- Mappings:
Namespace Name Mixin selector official color3f
Lcom/mojang/blaze3d/systems/RenderSystem;color3f(FFF)V
intermediary color3f
Lcom/mojang/blaze3d/systems/RenderSystem;color3f(FFF)V
named color3f
Lcom/mojang/blaze3d/systems/RenderSystem;color3f(FFF)V
-
clearCurrentColor
Deprecated.- Mappings:
Namespace Name Mixin selector official clearCurrentColor
Lcom/mojang/blaze3d/systems/RenderSystem;clearCurrentColor()V
intermediary clearCurrentColor
Lcom/mojang/blaze3d/systems/RenderSystem;clearCurrentColor()V
named clearCurrentColor
Lcom/mojang/blaze3d/systems/RenderSystem;clearCurrentColor()V
-
drawElements
public static void drawElements(int mode, int first, int count)- Mappings:
Namespace Name Mixin selector official drawElements
Lcom/mojang/blaze3d/systems/RenderSystem;drawElements(III)V
intermediary drawElements
Lcom/mojang/blaze3d/systems/RenderSystem;drawElements(III)V
named drawElements
Lcom/mojang/blaze3d/systems/RenderSystem;drawElements(III)V
-
lineWidth
public static void lineWidth(float width)- Mappings:
Namespace Name Mixin selector official lineWidth
Lcom/mojang/blaze3d/systems/RenderSystem;lineWidth(F)V
intermediary lineWidth
Lcom/mojang/blaze3d/systems/RenderSystem;lineWidth(F)V
named lineWidth
Lcom/mojang/blaze3d/systems/RenderSystem;lineWidth(F)V
-
pixelStore
public static void pixelStore(int pname, int param)- Mappings:
Namespace Name Mixin selector official pixelStore
Lcom/mojang/blaze3d/systems/RenderSystem;pixelStore(II)V
intermediary pixelStore
Lcom/mojang/blaze3d/systems/RenderSystem;pixelStore(II)V
named pixelStore
Lcom/mojang/blaze3d/systems/RenderSystem;pixelStore(II)V
-
pixelTransfer
public static void pixelTransfer(int int2, float float2)- Mappings:
Namespace Name Mixin selector official pixelTransfer
Lcom/mojang/blaze3d/systems/RenderSystem;pixelTransfer(IF)V
intermediary pixelTransfer
Lcom/mojang/blaze3d/systems/RenderSystem;pixelTransfer(IF)V
named pixelTransfer
Lcom/mojang/blaze3d/systems/RenderSystem;pixelTransfer(IF)V
-
readPixels
public static void readPixels(int x, int y, int width, int height, int format, int type, ByteBuffer pixels)- Mappings:
Namespace Name Mixin selector official readPixels
Lcom/mojang/blaze3d/systems/RenderSystem;readPixels(IIIIIILjava/nio/ByteBuffer;)V
intermediary readPixels
Lcom/mojang/blaze3d/systems/RenderSystem;readPixels(IIIIIILjava/nio/ByteBuffer;)V
named readPixels
Lcom/mojang/blaze3d/systems/RenderSystem;readPixels(IIIIIILjava/nio/ByteBuffer;)V
-
getString
- Mappings:
Namespace Name Mixin selector official getString
Lcom/mojang/blaze3d/systems/RenderSystem;getString(ILjava/util/function/Consumer;)V
intermediary getString
Lcom/mojang/blaze3d/systems/RenderSystem;getString(ILjava/util/function/Consumer;)V
named getString
Lcom/mojang/blaze3d/systems/RenderSystem;getString(ILjava/util/function/Consumer;)V
-
getBackendDescription
- Mappings:
Namespace Name Mixin selector official getBackendDescription
Lcom/mojang/blaze3d/systems/RenderSystem;getBackendDescription()Ljava/lang/String;
intermediary getBackendDescription
Lcom/mojang/blaze3d/systems/RenderSystem;getBackendDescription()Ljava/lang/String;
named getBackendDescription
Lcom/mojang/blaze3d/systems/RenderSystem;getBackendDescription()Ljava/lang/String;
-
getApiDescription
- Mappings:
Namespace Name Mixin selector official getApiDescription
Lcom/mojang/blaze3d/systems/RenderSystem;getApiDescription()Ljava/lang/String;
intermediary getApiDescription
Lcom/mojang/blaze3d/systems/RenderSystem;getApiDescription()Ljava/lang/String;
named getApiDescription
Lcom/mojang/blaze3d/systems/RenderSystem;getApiDescription()Ljava/lang/String;
-
initBackendSystem
- Mappings:
Namespace Name Mixin selector official initBackendSystem
Lcom/mojang/blaze3d/systems/RenderSystem;initBackendSystem()Ljava/util/function/LongSupplier;
intermediary initBackendSystem
Lcom/mojang/blaze3d/systems/RenderSystem;initBackendSystem()Ljava/util/function/LongSupplier;
named initBackendSystem
Lcom/mojang/blaze3d/systems/RenderSystem;initBackendSystem()Ljava/util/function/LongSupplier;
-
initRenderer
public static void initRenderer(int debugVerbosity, boolean debugSync)- Mappings:
Namespace Name Mixin selector official initRenderer
Lcom/mojang/blaze3d/systems/RenderSystem;initRenderer(IZ)V
intermediary initRenderer
Lcom/mojang/blaze3d/systems/RenderSystem;initRenderer(IZ)V
named initRenderer
Lcom/mojang/blaze3d/systems/RenderSystem;initRenderer(IZ)V
-
setErrorCallback
- Mappings:
Namespace Name Mixin selector official setErrorCallback
Lcom/mojang/blaze3d/systems/RenderSystem;setErrorCallback(Lorg/lwjgl/glfw/GLFWErrorCallbackI;)V
intermediary setErrorCallback
Lcom/mojang/blaze3d/systems/RenderSystem;setErrorCallback(Lorg/lwjgl/glfw/GLFWErrorCallbackI;)V
named setErrorCallback
Lcom/mojang/blaze3d/systems/RenderSystem;setErrorCallback(Lorg/lwjgl/glfw/GLFWErrorCallbackI;)V
-
renderCrosshair
public static void renderCrosshair(int size)- Mappings:
Namespace Name Mixin selector official renderCrosshair
Lcom/mojang/blaze3d/systems/RenderSystem;renderCrosshair(I)V
intermediary renderCrosshair
Lcom/mojang/blaze3d/systems/RenderSystem;renderCrosshair(I)V
named renderCrosshair
Lcom/mojang/blaze3d/systems/RenderSystem;renderCrosshair(I)V
-
setupNvFogDistance
public static void setupNvFogDistance()- Mappings:
Namespace Name Mixin selector official setupNvFogDistance
Lcom/mojang/blaze3d/systems/RenderSystem;setupNvFogDistance()V
intermediary setupNvFogDistance
Lcom/mojang/blaze3d/systems/RenderSystem;setupNvFogDistance()V
named setupNvFogDistance
Lcom/mojang/blaze3d/systems/RenderSystem;setupNvFogDistance()V
-
glMultiTexCoord2f
Deprecated.- Mappings:
Namespace Name Mixin selector official glMultiTexCoord2f
Lcom/mojang/blaze3d/systems/RenderSystem;glMultiTexCoord2f(IFF)V
intermediary glMultiTexCoord2f
Lcom/mojang/blaze3d/systems/RenderSystem;glMultiTexCoord2f(IFF)V
named glMultiTexCoord2f
Lcom/mojang/blaze3d/systems/RenderSystem;glMultiTexCoord2f(IFF)V
-
getCapsString
- Mappings:
Namespace Name Mixin selector official getCapsString
Lcom/mojang/blaze3d/systems/RenderSystem;getCapsString()Ljava/lang/String;
intermediary getCapsString
Lcom/mojang/blaze3d/systems/RenderSystem;getCapsString()Ljava/lang/String;
named getCapsString
Lcom/mojang/blaze3d/systems/RenderSystem;getCapsString()Ljava/lang/String;
-
setupDefaultState
public static void setupDefaultState(int x, int y, int width, int height)- Mappings:
Namespace Name Mixin selector official setupDefaultState
Lcom/mojang/blaze3d/systems/RenderSystem;setupDefaultState(IIII)V
intermediary setupDefaultState
Lcom/mojang/blaze3d/systems/RenderSystem;setupDefaultState(IIII)V
named setupDefaultState
Lcom/mojang/blaze3d/systems/RenderSystem;setupDefaultState(IIII)V
-
maxSupportedTextureSize
public static int maxSupportedTextureSize()- Mappings:
Namespace Name Mixin selector official maxSupportedTextureSize
Lcom/mojang/blaze3d/systems/RenderSystem;maxSupportedTextureSize()I
intermediary maxSupportedTextureSize
Lcom/mojang/blaze3d/systems/RenderSystem;maxSupportedTextureSize()I
named maxSupportedTextureSize
Lcom/mojang/blaze3d/systems/RenderSystem;maxSupportedTextureSize()I
-
glBindBuffer
- Mappings:
Namespace Name Mixin selector official glBindBuffer
Lcom/mojang/blaze3d/systems/RenderSystem;glBindBuffer(ILjava/util/function/Supplier;)V
intermediary glBindBuffer
Lcom/mojang/blaze3d/systems/RenderSystem;glBindBuffer(ILjava/util/function/Supplier;)V
named glBindBuffer
Lcom/mojang/blaze3d/systems/RenderSystem;glBindBuffer(ILjava/util/function/Supplier;)V
-
glBufferData
- Mappings:
Namespace Name Mixin selector official glBufferData
Lcom/mojang/blaze3d/systems/RenderSystem;glBufferData(ILjava/nio/ByteBuffer;I)V
intermediary glBufferData
Lcom/mojang/blaze3d/systems/RenderSystem;glBufferData(ILjava/nio/ByteBuffer;I)V
named glBufferData
Lcom/mojang/blaze3d/systems/RenderSystem;glBufferData(ILjava/nio/ByteBuffer;I)V
-
glDeleteBuffers
public static void glDeleteBuffers(int buffer)- Mappings:
Namespace Name Mixin selector official glDeleteBuffers
Lcom/mojang/blaze3d/systems/RenderSystem;glDeleteBuffers(I)V
intermediary glDeleteBuffers
Lcom/mojang/blaze3d/systems/RenderSystem;glDeleteBuffers(I)V
named glDeleteBuffers
Lcom/mojang/blaze3d/systems/RenderSystem;glDeleteBuffers(I)V
-
glUniform1i
public static void glUniform1i(int location, int value)- Mappings:
Namespace Name Mixin selector official glUniform1i
Lcom/mojang/blaze3d/systems/RenderSystem;glUniform1i(II)V
intermediary glUniform1i
Lcom/mojang/blaze3d/systems/RenderSystem;glUniform1i(II)V
named glUniform1i
Lcom/mojang/blaze3d/systems/RenderSystem;glUniform1i(II)V
-
glUniform1
- Mappings:
Namespace Name Mixin selector official glUniform1
Lcom/mojang/blaze3d/systems/RenderSystem;glUniform1(ILjava/nio/IntBuffer;)V
intermediary glUniform1
Lcom/mojang/blaze3d/systems/RenderSystem;glUniform1(ILjava/nio/IntBuffer;)V
named glUniform1
Lcom/mojang/blaze3d/systems/RenderSystem;glUniform1(ILjava/nio/IntBuffer;)V
-
glUniform2
- Mappings:
Namespace Name Mixin selector official glUniform2
Lcom/mojang/blaze3d/systems/RenderSystem;glUniform2(ILjava/nio/IntBuffer;)V
intermediary glUniform2
Lcom/mojang/blaze3d/systems/RenderSystem;glUniform2(ILjava/nio/IntBuffer;)V
named glUniform2
Lcom/mojang/blaze3d/systems/RenderSystem;glUniform2(ILjava/nio/IntBuffer;)V
-
glUniform3
- Mappings:
Namespace Name Mixin selector official glUniform3
Lcom/mojang/blaze3d/systems/RenderSystem;glUniform3(ILjava/nio/IntBuffer;)V
intermediary glUniform3
Lcom/mojang/blaze3d/systems/RenderSystem;glUniform3(ILjava/nio/IntBuffer;)V
named glUniform3
Lcom/mojang/blaze3d/systems/RenderSystem;glUniform3(ILjava/nio/IntBuffer;)V
-
glUniform4
- Mappings:
Namespace Name Mixin selector official glUniform4
Lcom/mojang/blaze3d/systems/RenderSystem;glUniform4(ILjava/nio/IntBuffer;)V
intermediary glUniform4
Lcom/mojang/blaze3d/systems/RenderSystem;glUniform4(ILjava/nio/IntBuffer;)V
named glUniform4
Lcom/mojang/blaze3d/systems/RenderSystem;glUniform4(ILjava/nio/IntBuffer;)V
-
glUniform1
- Mappings:
Namespace Name Mixin selector official glUniform1
Lcom/mojang/blaze3d/systems/RenderSystem;glUniform1(ILjava/nio/FloatBuffer;)V
intermediary glUniform1
Lcom/mojang/blaze3d/systems/RenderSystem;glUniform1(ILjava/nio/FloatBuffer;)V
named glUniform1
Lcom/mojang/blaze3d/systems/RenderSystem;glUniform1(ILjava/nio/FloatBuffer;)V
-
glUniform2
- Mappings:
Namespace Name Mixin selector official glUniform2
Lcom/mojang/blaze3d/systems/RenderSystem;glUniform2(ILjava/nio/FloatBuffer;)V
intermediary glUniform2
Lcom/mojang/blaze3d/systems/RenderSystem;glUniform2(ILjava/nio/FloatBuffer;)V
named glUniform2
Lcom/mojang/blaze3d/systems/RenderSystem;glUniform2(ILjava/nio/FloatBuffer;)V
-
glUniform3
- Mappings:
Namespace Name Mixin selector official glUniform3
Lcom/mojang/blaze3d/systems/RenderSystem;glUniform3(ILjava/nio/FloatBuffer;)V
intermediary glUniform3
Lcom/mojang/blaze3d/systems/RenderSystem;glUniform3(ILjava/nio/FloatBuffer;)V
named glUniform3
Lcom/mojang/blaze3d/systems/RenderSystem;glUniform3(ILjava/nio/FloatBuffer;)V
-
glUniform4
- Mappings:
Namespace Name Mixin selector official glUniform4
Lcom/mojang/blaze3d/systems/RenderSystem;glUniform4(ILjava/nio/FloatBuffer;)V
intermediary glUniform4
Lcom/mojang/blaze3d/systems/RenderSystem;glUniform4(ILjava/nio/FloatBuffer;)V
named glUniform4
Lcom/mojang/blaze3d/systems/RenderSystem;glUniform4(ILjava/nio/FloatBuffer;)V
-
glUniformMatrix2
- Mappings:
Namespace Name Mixin selector official glUniformMatrix2
Lcom/mojang/blaze3d/systems/RenderSystem;glUniformMatrix2(IZLjava/nio/FloatBuffer;)V
intermediary glUniformMatrix2
Lcom/mojang/blaze3d/systems/RenderSystem;glUniformMatrix2(IZLjava/nio/FloatBuffer;)V
named glUniformMatrix2
Lcom/mojang/blaze3d/systems/RenderSystem;glUniformMatrix2(IZLjava/nio/FloatBuffer;)V
-
glUniformMatrix3
- Mappings:
Namespace Name Mixin selector official glUniformMatrix3
Lcom/mojang/blaze3d/systems/RenderSystem;glUniformMatrix3(IZLjava/nio/FloatBuffer;)V
intermediary glUniformMatrix3
Lcom/mojang/blaze3d/systems/RenderSystem;glUniformMatrix3(IZLjava/nio/FloatBuffer;)V
named glUniformMatrix3
Lcom/mojang/blaze3d/systems/RenderSystem;glUniformMatrix3(IZLjava/nio/FloatBuffer;)V
-
glUniformMatrix4
- Mappings:
Namespace Name Mixin selector official glUniformMatrix4
Lcom/mojang/blaze3d/systems/RenderSystem;glUniformMatrix4(IZLjava/nio/FloatBuffer;)V
intermediary glUniformMatrix4
Lcom/mojang/blaze3d/systems/RenderSystem;glUniformMatrix4(IZLjava/nio/FloatBuffer;)V
named glUniformMatrix4
Lcom/mojang/blaze3d/systems/RenderSystem;glUniformMatrix4(IZLjava/nio/FloatBuffer;)V
-
setupOutline
public static void setupOutline()- Mappings:
Namespace Name Mixin selector official setupOutline
Lcom/mojang/blaze3d/systems/RenderSystem;setupOutline()V
intermediary setupOutline
Lcom/mojang/blaze3d/systems/RenderSystem;setupOutline()V
named setupOutline
Lcom/mojang/blaze3d/systems/RenderSystem;setupOutline()V
-
teardownOutline
public static void teardownOutline()- Mappings:
Namespace Name Mixin selector official teardownOutline
Lcom/mojang/blaze3d/systems/RenderSystem;teardownOutline()V
intermediary teardownOutline
Lcom/mojang/blaze3d/systems/RenderSystem;teardownOutline()V
named teardownOutline
Lcom/mojang/blaze3d/systems/RenderSystem;teardownOutline()V
-
setupOverlayColor
- Mappings:
Namespace Name Mixin selector official setupOverlayColor
Lcom/mojang/blaze3d/systems/RenderSystem;setupOverlayColor(Ljava/util/function/IntSupplier;I)V
intermediary setupOverlayColor
Lcom/mojang/blaze3d/systems/RenderSystem;setupOverlayColor(Ljava/util/function/IntSupplier;I)V
named setupOverlayColor
Lcom/mojang/blaze3d/systems/RenderSystem;setupOverlayColor(Ljava/util/function/IntSupplier;I)V
-
teardownOverlayColor
public static void teardownOverlayColor()- Mappings:
Namespace Name Mixin selector official teardownOverlayColor
Lcom/mojang/blaze3d/systems/RenderSystem;teardownOverlayColor()V
intermediary teardownOverlayColor
Lcom/mojang/blaze3d/systems/RenderSystem;teardownOverlayColor()V
named teardownOverlayColor
Lcom/mojang/blaze3d/systems/RenderSystem;teardownOverlayColor()V
-
setupLevelDiffuseLighting
- Mappings:
Namespace Name Mixin selector official setupLevelDiffuseLighting
Lcom/mojang/blaze3d/systems/RenderSystem;setupLevelDiffuseLighting(Lg;Lg;Lb;)V
intermediary setupLevelDiffuseLighting
Lcom/mojang/blaze3d/systems/RenderSystem;setupLevelDiffuseLighting(Lnet/minecraft/class_1160;Lnet/minecraft/class_1160;Lnet/minecraft/class_1159;)V
named setupLevelDiffuseLighting
Lcom/mojang/blaze3d/systems/RenderSystem;setupLevelDiffuseLighting(Lnet/minecraft/util/math/Vec3f;Lnet/minecraft/util/math/Vec3f;Lnet/minecraft/util/math/Matrix4f;)V
-
setupGuiFlatDiffuseLighting
- Mappings:
Namespace Name Mixin selector official setupGuiFlatDiffuseLighting
Lcom/mojang/blaze3d/systems/RenderSystem;setupGuiFlatDiffuseLighting(Lg;Lg;)V
intermediary setupGuiFlatDiffuseLighting
Lcom/mojang/blaze3d/systems/RenderSystem;setupGuiFlatDiffuseLighting(Lnet/minecraft/class_1160;Lnet/minecraft/class_1160;)V
named setupGuiFlatDiffuseLighting
Lcom/mojang/blaze3d/systems/RenderSystem;setupGuiFlatDiffuseLighting(Lnet/minecraft/util/math/Vec3f;Lnet/minecraft/util/math/Vec3f;)V
-
setupGui3DDiffuseLighting
- Mappings:
Namespace Name Mixin selector official setupGui3DDiffuseLighting
Lcom/mojang/blaze3d/systems/RenderSystem;setupGui3DDiffuseLighting(Lg;Lg;)V
intermediary setupGui3DDiffuseLighting
Lcom/mojang/blaze3d/systems/RenderSystem;setupGui3DDiffuseLighting(Lnet/minecraft/class_1160;Lnet/minecraft/class_1160;)V
named setupGui3DDiffuseLighting
Lcom/mojang/blaze3d/systems/RenderSystem;setupGui3DDiffuseLighting(Lnet/minecraft/util/math/Vec3f;Lnet/minecraft/util/math/Vec3f;)V
-
mulTextureByProjModelView
public static void mulTextureByProjModelView()- Mappings:
Namespace Name Mixin selector official mulTextureByProjModelView
Lcom/mojang/blaze3d/systems/RenderSystem;mulTextureByProjModelView()V
intermediary mulTextureByProjModelView
Lcom/mojang/blaze3d/systems/RenderSystem;mulTextureByProjModelView()V
named mulTextureByProjModelView
Lcom/mojang/blaze3d/systems/RenderSystem;mulTextureByProjModelView()V
-
setupEndPortalTexGen
public static void setupEndPortalTexGen()- Mappings:
Namespace Name Mixin selector official setupEndPortalTexGen
Lcom/mojang/blaze3d/systems/RenderSystem;setupEndPortalTexGen()V
intermediary setupEndPortalTexGen
Lcom/mojang/blaze3d/systems/RenderSystem;setupEndPortalTexGen()V
named setupEndPortalTexGen
Lcom/mojang/blaze3d/systems/RenderSystem;setupEndPortalTexGen()V
-
clearTexGen
public static void clearTexGen()- Mappings:
Namespace Name Mixin selector official clearTexGen
Lcom/mojang/blaze3d/systems/RenderSystem;clearTexGen()V
intermediary clearTexGen
Lcom/mojang/blaze3d/systems/RenderSystem;clearTexGen()V
named clearTexGen
Lcom/mojang/blaze3d/systems/RenderSystem;clearTexGen()V
-
beginInitialization
public static void beginInitialization()- Mappings:
Namespace Name Mixin selector official beginInitialization
Lcom/mojang/blaze3d/systems/RenderSystem;beginInitialization()V
intermediary beginInitialization
Lcom/mojang/blaze3d/systems/RenderSystem;beginInitialization()V
named beginInitialization
Lcom/mojang/blaze3d/systems/RenderSystem;beginInitialization()V
-
finishInitialization
public static void finishInitialization()- Mappings:
Namespace Name Mixin selector official finishInitialization
Lcom/mojang/blaze3d/systems/RenderSystem;finishInitialization()V
intermediary finishInitialization
Lcom/mojang/blaze3d/systems/RenderSystem;finishInitialization()V
named finishInitialization
Lcom/mojang/blaze3d/systems/RenderSystem;finishInitialization()V
-
glGenBuffers
- Mappings:
Namespace Name Mixin selector official glGenBuffers
Lcom/mojang/blaze3d/systems/RenderSystem;glGenBuffers(Ljava/util/function/Consumer;)V
intermediary glGenBuffers
Lcom/mojang/blaze3d/systems/RenderSystem;glGenBuffers(Ljava/util/function/Consumer;)V
named glGenBuffers
Lcom/mojang/blaze3d/systems/RenderSystem;glGenBuffers(Ljava/util/function/Consumer;)V
-
renderThreadTesselator
- Mappings:
Namespace Name Mixin selector official renderThreadTesselator
Lcom/mojang/blaze3d/systems/RenderSystem;renderThreadTesselator()Ldlt;
intermediary renderThreadTesselator
Lcom/mojang/blaze3d/systems/RenderSystem;renderThreadTesselator()Lnet/minecraft/class_289;
named renderThreadTesselator
Lcom/mojang/blaze3d/systems/RenderSystem;renderThreadTesselator()Lnet/minecraft/client/render/Tessellator;
-
defaultBlendFunc
public static void defaultBlendFunc()- Mappings:
Namespace Name Mixin selector official defaultBlendFunc
Lcom/mojang/blaze3d/systems/RenderSystem;defaultBlendFunc()V
intermediary defaultBlendFunc
Lcom/mojang/blaze3d/systems/RenderSystem;defaultBlendFunc()V
named defaultBlendFunc
Lcom/mojang/blaze3d/systems/RenderSystem;defaultBlendFunc()V
-
defaultAlphaFunc
public static void defaultAlphaFunc()- Mappings:
Namespace Name Mixin selector official defaultAlphaFunc
Lcom/mojang/blaze3d/systems/RenderSystem;defaultAlphaFunc()V
intermediary defaultAlphaFunc
Lcom/mojang/blaze3d/systems/RenderSystem;defaultAlphaFunc()V
named defaultAlphaFunc
Lcom/mojang/blaze3d/systems/RenderSystem;defaultAlphaFunc()V
-
runAsFancy
Deprecated.- Mappings:
Namespace Name Mixin selector official runAsFancy
Lcom/mojang/blaze3d/systems/RenderSystem;runAsFancy(Ljava/lang/Runnable;)V
intermediary runAsFancy
Lcom/mojang/blaze3d/systems/RenderSystem;runAsFancy(Ljava/lang/Runnable;)V
named runAsFancy
Lcom/mojang/blaze3d/systems/RenderSystem;runAsFancy(Ljava/lang/Runnable;)V
-
getSequentialBuffer
public static RenderSystem.IndexBuffer getSequentialBuffer(VertexFormat.DrawMode drawMode, int int2)- Mappings:
Namespace Name Mixin selector official getSequentialBuffer
Lcom/mojang/blaze3d/systems/RenderSystem;getSequentialBuffer(Ldlw$b;I)Lcom/mojang/blaze3d/systems/RenderSystem$a;
intermediary getSequentialBuffer
Lcom/mojang/blaze3d/systems/RenderSystem;getSequentialBuffer(Lnet/minecraft/class_293$class_5596;I)Lcom/mojang/blaze3d/systems/RenderSystem$class_5590;
named getSequentialBuffer
Lcom/mojang/blaze3d/systems/RenderSystem;getSequentialBuffer(Lnet/minecraft/client/render/VertexFormat$DrawMode;I)Lcom/mojang/blaze3d/systems/RenderSystem$IndexBuffer;
-