Skip to content

Commit

Permalink
Fixed tesselation compat patcher
Browse files Browse the repository at this point in the history
  • Loading branch information
IMS212 committed Dec 24, 2023
1 parent 0b8ff99 commit cc4d2be
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@ public boolean matchesExtract(ExternalDeclaration tree) {
}
}

private static final ShaderType[] pipeline = { ShaderType.VERTEX, ShaderType.GEOMETRY, ShaderType.FRAGMENT };
private static final ShaderType[] pipeline = { ShaderType.VERTEX, ShaderType.TESSELATION_CONTROL, ShaderType.TESSELATION_EVAL, ShaderType.GEOMETRY, ShaderType.FRAGMENT };
private static final Matcher<ExternalDeclaration> outDeclarationMatcher = new DeclarationMatcher(
StorageType.OUT);
private static final Matcher<ExternalDeclaration> inDeclarationMatcher = new DeclarationMatcher(
Expand Down

0 comments on commit cc4d2be

Please sign in to comment.