This commit is contained in:
mcrcortex
2025-09-15 18:26:55 +10:00
parent 5781f17858
commit 6539d67087

View File

@@ -103,7 +103,10 @@ public class IrisShaderPatch {
case "GL_SRC1_COLOR" -> GL_SRC1_COLOR; case "GL_SRC1_COLOR" -> GL_SRC1_COLOR;
case "GL_ONE_MINUS_SRC1_COLOR" -> GL_ONE_MINUS_SRC1_COLOR; case "GL_ONE_MINUS_SRC1_COLOR" -> GL_ONE_MINUS_SRC1_COLOR;
case "GL_ONE_MINUS_SRC1_ALPHA" -> GL_ONE_MINUS_SRC1_ALPHA; case "GL_ONE_MINUS_SRC1_ALPHA" -> GL_ONE_MINUS_SRC1_ALPHA;
default -> -1; default -> {
Logger.error("Unknown blend option " + type);
yield -1;
}
}; };
} }
@Override @Override