Lowercase enums

This commit is contained in:
Anuken
2020-06-21 12:38:59 -04:00
parent 6f1a64db78
commit 4a8be42258
13 changed files with 23 additions and 24 deletions

View File

@@ -35,7 +35,7 @@ public class LoadRenderer implements Disposable{
private Mesh mesh = MeshBuilder.buildHex(colorRed, 2, true, 1f);
private Camera3D cam = new Camera3D();
private int lastLength = -1;
private FxProcessor fx = new FxProcessor(Format.RGBA8888, 2, 2, false, true);
private FxProcessor fx = new FxProcessor(Format.rgba8888, 2, 2, false, true);
private WindowedMean renderTimes = new WindowedMean(20);
private long lastFrameTime;

View File

@@ -66,7 +66,7 @@ public class MinimapRenderer implements Disposable{
texture.dispose();
}
setZoom(4f);
pixmap = new Pixmap(world.width(), world.height(), Format.RGBA8888);
pixmap = new Pixmap(world.width(), world.height(), Format.rgba8888);
texture = new Texture(pixmap);
region = new TextureRegion(texture);
}

View File

@@ -12,7 +12,7 @@ public class MultiPacker implements Disposable{
public MultiPacker(){
for(int i = 0; i < packers.length; i++){
int pageSize = 2048;
packers[i] = new PixmapPacker(pageSize, pageSize, Format.RGBA8888, 2, true);
packers[i] = new PixmapPacker(pageSize, pageSize, Format.rgba8888, 2, true);
}
}