CLAMP -> CLAMP_TO_EDGE

This commit is contained in:
PeytonPlayz595 2025-05-22 18:05:28 -04:00
parent 52760d17d6
commit 07f08111c3

View File

@ -115,6 +115,7 @@ public class EaglercraftGPU extends GlStateManager {
}
public static void glTexParameteri(int target, int param, int value) {
if(value == GL_CLAMP) value = GL_CLAMP_TO_EDGE;
_wglTexParameteri(target, param, value);
}