Skip to content

Commit

Permalink
Remove "Experimental" from the graphics tracing APIs.
Browse files Browse the repository at this point in the history
  • Loading branch information
pmuetschard committed Jul 8, 2021
1 parent 0fe398f commit bf2975a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gapic/src/main/com/google/gapid/views/TracerDialog.java
Original file line number Diff line number Diff line change
Expand Up @@ -613,7 +613,7 @@ private static ComboViewer createApiDropDown(Composite parent) {
public String getText(Object element) {
TraceTypeCapabilities ttc = (TraceTypeCapabilities)element;
switch (ttc.getType()) {
case Graphics: return ttc.getApi() + " (Experimental)";
case Graphics: return ttc.getApi();
case Perfetto: return "System Profile";
default: throw new AssertionError();
}
Expand Down

0 comments on commit bf2975a

Please sign in to comment.