This commit is contained in:
mcrcortex
2025-08-14 22:41:49 +10:00
parent a0f9b78162
commit 3e50c95c91
2 changed files with 0 additions and 17 deletions

View File

@@ -1,12 +0,0 @@
package me.cortex.voxy.client.core.gl.shader;
import java.util.regex.Pattern;
public class GenericsProcessor implements IShaderProcessor {
private static final Pattern GENERIC_DEFINE = Pattern.compile("#defineGen (?<name>[A-Za-z0-9]+)<(?<generic>[A-Za-z0-9]*)>");
private static final Pattern GENERIC_USE = Pattern.compile("(?<type>[A-Za-z0-9]+)<(?<generic>[A-Za-z0-9]*)>");
@Override
public String process(ShaderType type, String source) {
return null;
}
}

View File

@@ -1,5 +0,0 @@
package me.cortex.voxy.common.voxelization;
public interface I3dSupplier <T> {
T supply(int x, int y, int z);
}