Skip to content

Commit a3b4f19

Browse files
committed
fix
1 parent 1908da1 commit a3b4f19

2 files changed

Lines changed: 0 additions & 15 deletions

File tree

build.gradle

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -277,18 +277,4 @@ tasks.register("jarFromScratch", JarFromScratchAlias) {
277277
dependsOn "jar"
278278
archiveFile.set(tasks.named("jar").flatMap { it.archiveFile })
279279
archiveFileName.set(tasks.named("jar").flatMap { it.archiveFileName })
280-
}
281-
282-
tasks.register('printDependencies') {
283-
def depStrings = configurations.getByName('compileClasspath')
284-
.incoming.resolutionResult.allComponents
285-
.findAll { it.id instanceof ModuleComponentIdentifier }
286-
.collect { " ${it.moduleVersion}" }
287-
doLast {
288-
depStrings.each { logger.lifecycle(it) }
289-
}
290-
}
291-
292-
tasks.named('compileJava') {
293-
dependsOn 'printDependencies'
294280
}

src/main/java/cn/ussshenzhou/madparticle/particle/render/ModRenderPipelines.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,6 @@ public class ModRenderPipelines {
5151
public static final RenderPipeline INSTANCED_OIT = RenderPipelines.register(
5252
RenderPipeline.builder(INSTANCED_SNIPPET)
5353
.withLocation(Identifier.fromNamespaceAndPath(MadParticle.MOD_ID, "instanced_oit"))
54-
.withVertexShader(Identifier.fromNamespaceAndPath(MadParticle.MOD_ID, "instanced_particle_oit"))
5554
.withFragmentShader(Identifier.fromNamespaceAndPath(MadParticle.MOD_ID, "instanced_particle_oit"))
5655
.withColorTargetState(new ColorTargetState(BlendFunction.ADDITIVE))
5756
.withDepthStencilState(new DepthStencilState(CompareOp.LESS_THAN_OR_EQUAL, false))

0 commit comments

Comments
 (0)