Skip to content

Commit deb348e

Browse files
committed
fix: incorrect UNIFORM_SIZE #154
chore: upgrade loom
1 parent 4e6fdf0 commit deb348e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import java.text.ParseException
44

55
plugins {
66
java
7-
id("fabric-loom") version ("1.11-SNAPSHOT")
7+
id("fabric-loom") version ("1.13-SNAPSHOT")
88
id("com.gradleup.shadow") version ("8.3.9")
99
id("io.freefair.lombok") version ("9.0.0")
1010
}

src/main/java/com/fix3dll/skyblockaddons/core/render/chroma/ChromaUniform.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
*/
1515
public class ChromaUniform implements AutoCloseable {
1616

17-
private final int UNIFORM_SIZE = new Std140SizeCalculator().putFloat().putFloat().get();
17+
private final int UNIFORM_SIZE = new Std140SizeCalculator().putFloat().putFloat().putFloat().get();
1818

1919
private final DynamicUniformStorage<UniformValue> storage = new DynamicUniformStorage<>("SBA Chroma UBO", UNIFORM_SIZE, 2);
2020

0 commit comments

Comments
 (0)