Package net.minecraft.client.render
Enum Class VertexFormat.DrawMode
- All Implemented Interfaces:
Serializable,Comparable<VertexFormat.DrawMode>,Constable
- Enclosing class:
VertexFormat
- Mappings:
Namespace Name named net/minecraft/client/render/VertexFormat$DrawModeintermediary net/minecraft/class_293$class_5596official fgw$c
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescription -
Field Summary
FieldsModifier and TypeFieldDescriptionfinal intThe number of vertices needed to form an additional shape.final intThe number of vertices needed to form a first shape.final intfinal booleanWhether there are shared vertices in consecutive shapes. -
Constructor Summary
ConstructorsModifierConstructorDescriptionprivateDrawMode(int glMode, int firstVertexCount, int additionalVertexCount, boolean shareVertices) -
Method Summary
Modifier and TypeMethodDescriptionintgetIndexCount(int vertexCount) static VertexFormat.DrawModeReturns the enum constant of this class with the specified name.static VertexFormat.DrawMode[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
LINES
- Mappings:
Namespace Name Mixin selector named LINESLnet/minecraft/client/render/VertexFormat$DrawMode;LINES:Lnet/minecraft/client/render/VertexFormat$DrawMode;intermediary field_27377Lnet/minecraft/class_293$class_5596;field_27377:Lnet/minecraft/class_293$class_5596;official aLfgw$c;a:Lfgw$c;
-
LINE_STRIP
- Mappings:
Namespace Name Mixin selector named LINE_STRIPLnet/minecraft/client/render/VertexFormat$DrawMode;LINE_STRIP:Lnet/minecraft/client/render/VertexFormat$DrawMode;intermediary field_27378Lnet/minecraft/class_293$class_5596;field_27378:Lnet/minecraft/class_293$class_5596;official bLfgw$c;b:Lfgw$c;
-
DEBUG_LINES
- Mappings:
Namespace Name Mixin selector named DEBUG_LINESLnet/minecraft/client/render/VertexFormat$DrawMode;DEBUG_LINES:Lnet/minecraft/client/render/VertexFormat$DrawMode;intermediary field_29344Lnet/minecraft/class_293$class_5596;field_29344:Lnet/minecraft/class_293$class_5596;official cLfgw$c;c:Lfgw$c;
-
DEBUG_LINE_STRIP
- Mappings:
Namespace Name Mixin selector named DEBUG_LINE_STRIPLnet/minecraft/client/render/VertexFormat$DrawMode;DEBUG_LINE_STRIP:Lnet/minecraft/client/render/VertexFormat$DrawMode;intermediary field_29345Lnet/minecraft/class_293$class_5596;field_29345:Lnet/minecraft/class_293$class_5596;official dLfgw$c;d:Lfgw$c;
-
TRIANGLES
- Mappings:
Namespace Name Mixin selector named TRIANGLESLnet/minecraft/client/render/VertexFormat$DrawMode;TRIANGLES:Lnet/minecraft/client/render/VertexFormat$DrawMode;intermediary field_27379Lnet/minecraft/class_293$class_5596;field_27379:Lnet/minecraft/class_293$class_5596;official eLfgw$c;e:Lfgw$c;
-
TRIANGLE_STRIP
- Mappings:
Namespace Name Mixin selector named TRIANGLE_STRIPLnet/minecraft/client/render/VertexFormat$DrawMode;TRIANGLE_STRIP:Lnet/minecraft/client/render/VertexFormat$DrawMode;intermediary field_27380Lnet/minecraft/class_293$class_5596;field_27380:Lnet/minecraft/class_293$class_5596;official fLfgw$c;f:Lfgw$c;
-
TRIANGLE_FAN
- Mappings:
Namespace Name Mixin selector named TRIANGLE_FANLnet/minecraft/client/render/VertexFormat$DrawMode;TRIANGLE_FAN:Lnet/minecraft/client/render/VertexFormat$DrawMode;intermediary field_27381Lnet/minecraft/class_293$class_5596;field_27381:Lnet/minecraft/class_293$class_5596;official gLfgw$c;g:Lfgw$c;
-
QUADS
- Mappings:
Namespace Name Mixin selector named QUADSLnet/minecraft/client/render/VertexFormat$DrawMode;QUADS:Lnet/minecraft/client/render/VertexFormat$DrawMode;intermediary field_27382Lnet/minecraft/class_293$class_5596;field_27382:Lnet/minecraft/class_293$class_5596;official hLfgw$c;h:Lfgw$c;
-
-
Field Details
-
glMode
public final int glMode- Mappings:
Namespace Name Mixin selector named glModeLnet/minecraft/client/render/VertexFormat$DrawMode;glMode:Iintermediary field_27383Lnet/minecraft/class_293$class_5596;field_27383:Iofficial iLfgw$c;i:I
-
firstVertexCount
public final int firstVertexCountThe number of vertices needed to form a first shape.- Mappings:
Namespace Name Mixin selector named firstVertexCountLnet/minecraft/client/render/VertexFormat$DrawMode;firstVertexCount:Iintermediary field_27384Lnet/minecraft/class_293$class_5596;field_27384:Iofficial jLfgw$c;j:I
-
additionalVertexCount
public final int additionalVertexCountThe number of vertices needed to form an additional shape. In other words, it'sfirstVertexCount - swheresis the number of vertices shared with the previous shape.- Mappings:
Namespace Name Mixin selector named additionalVertexCountLnet/minecraft/client/render/VertexFormat$DrawMode;additionalVertexCount:Iintermediary field_27385Lnet/minecraft/class_293$class_5596;field_27385:Iofficial kLfgw$c;k:I
-
-
Constructor Details
-
DrawMode
private DrawMode(int glMode, int firstVertexCount, int additionalVertexCount, boolean shareVertices) - Mappings:
Namespace Name Mixin selector named <init>Lnet/minecraft/client/render/VertexFormat$DrawMode;<init>(Ljava/lang/String;IIIIZ)Vintermediary <init>Lnet/minecraft/class_293$class_5596;<init>(Ljava/lang/String;IIIIZ)Vofficial <init>Lfgw$c;<init>(Ljava/lang/String;IIIIZ)V
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-
getIndexCount
public int getIndexCount(int vertexCount) - Mappings:
Namespace Name Mixin selector named getIndexCountLnet/minecraft/client/render/VertexFormat$DrawMode;getIndexCount(I)Iintermediary method_31973Lnet/minecraft/class_293$class_5596;method_31973(I)Iofficial aLfgw$c;a(I)I
-