Skip to content

Commit

Permalink
Add IRIS_TAG_SUPPORT and disable debug groups for now
Browse files Browse the repository at this point in the history
  • Loading branch information
IMS212 committed May 5, 2024
1 parent dfddd29 commit 5fe3396
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/net/irisshaders/iris/gl/GLDebug.java
Original file line number Diff line number Diff line change
Expand Up @@ -311,11 +311,11 @@ public static void nameObject(int id, int object, String name) {
}

public static void pushGroup(int id, String name) {
debugState.pushGroup(id, name);
//debugState.pushGroup(id, name);
}

public static void popGroup() {
debugState.popGroup();
//debugState.popGroup();
}

private interface DebugState {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ public static ImmutableList<StringPair> createStandardEnvironmentDefines() {
define(standardDefines, getVendor());
define(standardDefines, getRenderer());
define(standardDefines, "IS_IRIS");
define(standardDefines, "IRIS_TAG_SUPPORT");


if (FabricLoader.getInstance().isModLoaded("distanthorizons") && DHCompat.hasRenderingEnabled()) {
Expand Down

0 comments on commit 5fe3396

Please sign in to comment.