Skip to content

Commit

Permalink
Rename the trace type labels in the trace dialog.
Browse files Browse the repository at this point in the history
  • Loading branch information
pmuetschard committed Oct 6, 2021
1 parent 637a824 commit 18f18d3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gapic/src/main/com/google/gapid/views/TracerDialog.java
Original file line number Diff line number Diff line change
Expand Up @@ -651,9 +651,9 @@ private static ComboViewer createApiDropDown(Composite parent, Service.TraceType
@Override
public String getText(Object element) {
switch ((Service.TraceType)element) {
case Graphics: return "Vulkan";
case Graphics: return "Frame Profile - Vulkan";
case Perfetto: return "System Profile";
case ANGLE: return "OpenGL on ANGLE";
case ANGLE: return "Frame Profile - OpenGL on ANGLE";
default: throw new AssertionError();
}
}
Expand Down

0 comments on commit 18f18d3

Please sign in to comment.