Update libGDX to 1.9.15-SNAPSHOT

This commit is contained in:
fgnm
2021-02-22 12:35:34 +01:00
parent 88280171b8
commit 0af1000e97
9 changed files with 10 additions and 10 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
[0.0.5]
- Update libGDX to 1.9.14
- Update libGDX to 1.9.15-SNAPSHOT
- Update Ashley to 1.7.4
[0.0.4]
+2 -2
View File
@@ -1,5 +1,5 @@
gdxVersion = 1.9.14
gdxVersionBeta = 1.9.14
gdxVersion = 1.9.15-SNAPSHOT
gdxVersionBeta = 1.9.15-SNAPSHOT
box2dlightsVersion = 1.6-SNAPSHOT
ashleyVersion = 1.7.4
spineVersion = 3.8.55.1
@@ -14,7 +14,7 @@ public class PerformancePanel extends UIDraggablePanel {
private final VisTable mainTable;
private VisLabel entitiesCount, memoryLabel, fpsLbl, glCalls, drawCalls, shaderSwitch, textureBind, vertexCall;
private VisLabel entitiesCount, memoryLabel, fpsLbl, glCalls, drawCalls, shaderSwitch, textureBind, vertexCount;
private Engine engine;
private final GLProfiler profiler;
@@ -41,7 +41,7 @@ public class PerformancePanel extends UIDraggablePanel {
drawCalls = new VisLabel();
shaderSwitch = new VisLabel();
textureBind = new VisLabel();
vertexCall = new VisLabel();
vertexCount = new VisLabel();
mainTable.add(new VisLabel("Entity count: ")).right();
mainTable.add(entitiesCount).left().padLeft(4);
@@ -71,8 +71,8 @@ public class PerformancePanel extends UIDraggablePanel {
mainTable.add(textureBind).left().padLeft(4);
mainTable.row();
mainTable.add(new VisLabel("Vertex calls: ")).right();
mainTable.add(vertexCall).left().padLeft(4);
mainTable.add(new VisLabel("Vertex count: ")).right();
mainTable.add(vertexCount).left().padLeft(4);
mainTable.row();
pack();
@@ -101,7 +101,7 @@ public class PerformancePanel extends UIDraggablePanel {
drawCalls.setText(profiler.getDrawCalls());
shaderSwitch.setText(profiler.getShaderSwitches());
textureBind.setText(profiler.getTextureBindings());
vertexCall.setText((int) profiler.getVertexCount().total);
vertexCount.setText((int) profiler.getVertexCount().total);
}