-
-
Notifications
You must be signed in to change notification settings - Fork 652
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a3f561b
commit 4d7abdd
Showing
9 changed files
with
484 additions
and
95 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
31 changes: 31 additions & 0 deletions
31
src/main/java/net/coderbot/iris/vertices/IrisExtendedBufferBuilder.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
package net.coderbot.iris.vertices; | ||
|
||
import com.mojang.blaze3d.vertex.VertexFormat; | ||
|
||
public interface IrisExtendedBufferBuilder { | ||
VertexFormat iris$format(); | ||
|
||
VertexFormat.Mode iris$mode(); | ||
|
||
boolean iris$extending(); | ||
|
||
boolean iris$isTerrain(); | ||
|
||
boolean iris$injectNormalAndUV1(); | ||
|
||
int iris$vertexCount(); | ||
|
||
void iris$incrementVertexCount(); | ||
|
||
void iris$resetVertexCount(); | ||
|
||
short iris$currentBlock(); | ||
|
||
short iris$currentRenderType(); | ||
|
||
int iris$currentLocalPosX(); | ||
|
||
int iris$currentLocalPosY(); | ||
|
||
int iris$currentLocalPosZ(); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.