Update libGDX to 1.9.15-SNAPSHOT
This commit is contained in:
@@ -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]
|
||||
|
||||
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
Binary file not shown.
+2
-2
@@ -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
|
||||
|
||||
Submodule h2d-libgdx-talos-extension updated: f56e88451d...44f856f7b1
Submodule hyperlap2d-runtime-libgdx updated: b5e595be50...4ce12f2ae1
+5
-5
@@ -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);
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user