Skip to content

Commit

Permalink
Rename timeline viewer to match layer name (#43)
Browse files Browse the repository at this point in the history
  • Loading branch information
solidpixel authored Jan 9, 2025
1 parent b0aa47d commit 53c3a0f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
5 changes: 4 additions & 1 deletion lgl_mali_trace_viewer.py → lgl_mali_timeline_viewer.py
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -76,4 +76,7 @@ def main():


if __name__ == '__main__':
sys.exit(main())
try:
sys.exit(main())
except KeyboardInterrupt:
sys.exit(0)
6 changes: 3 additions & 3 deletions lglpy/timeline/gui/window.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,14 +49,14 @@

class Window:
'''
The Window is the main framework for the Mali trace viewer, providing the
root GTK window, event, and input handling functionality. This class
The Window is the main framework for the Mali timeline viewer, providing
the root GTK window, event, and input handling functionality. This class
provides no visualization functionality itself; specific logic for
visualizing data from a trace is delegated to a number of `View` instances
which are each designed to provide a specific interpretation of the data.
'''

DEFAULT_APP_TITLE = 'Arm GPU Trace Viewer'
DEFAULT_APP_TITLE = 'Arm GPU Timeline Viewer'
DEFAULT_VIEW = 'Homescreen'

RAW_MOUSE_EVENT = None
Expand Down

0 comments on commit 53c3a0f

Please sign in to comment.