Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rename tool to align with layer name #43

Merged
merged 1 commit into from
Jan 9, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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