Slowly implementing new render pipeline

This commit is contained in:
Speiger
2026-06-04 14:02:38 +02:00
parent c1f6c5ec10
commit 340d8ff463
40 changed files with 1198 additions and 89 deletions
-14
View File
@@ -12,18 +12,6 @@ eclipse {
classpath {
downloadJavadoc = true
downloadSources = true
file {
whenMerged { cp ->
cp.entries.forEach { entry ->
// Target the core LWJGL modules
if (entry.kind == 'lib' && entry.path.contains('org.lwjgl')) {
// Dynamically add a JPMS modular export rule to the Eclipse compiler
def rule = new org.gradle.plugins.ide.eclipse.model.AccessRule('accessible', 'org/lwjgl/system/**')
entry.accessRules.add(rule)
}
}
}
}
}
}
@@ -87,8 +75,6 @@ jar {
it.isDirectory() ? it : zipTree(it)
}
}
exclude('**/*.LIST')
exclude('**/module-info.class')
duplicatesStrategy = DuplicatesStrategy.INCLUDE
}