Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
M
MBetterc
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Mbetter
MBetterc
Commits
d697940f
Commit
d697940f
authored
Dec 03, 2025
by
Stefy Lanza (nextime / spora )
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
GPU debugging
parent
3bdf31e2
Changes
2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
269 additions
and
8 deletions
+269
-8
player.py
mbetterclient/qt_player/player.py
+208
-8
remote_debug.sh
remote_debug.sh
+61
-0
No files found.
mbetterclient/qt_player/player.py
View file @
d697940f
This diff is collapsed.
Click to expand it.
remote_debug.sh
0 → 100644
View file @
d697940f
#!/bin/bash
# Remote debugging script for overlay/GPU issues on nvidia-tesla-470 system
echo
"=== REMOTE DEBUGGING SCRIPT FOR OVERLAY/GPU ISSUES ==="
echo
"System:
$(
uname
-a
)
"
echo
"Date:
$(
date
)
"
echo
""
echo
"=== NVIDIA GPU STATUS ==="
nvidia-smi
echo
""
echo
"=== GPU PROCESSES ==="
nvidia-smi pmon
echo
""
echo
"=== OPENGL STATUS ==="
glxinfo |
head
-20
echo
""
echo
"=== DIRECT RENDERING STATUS ==="
glxinfo |
grep
-i
direct
echo
""
echo
"=== VULKAN STATUS ==="
if
command
-v
vulkaninfo &> /dev/null
;
then
vulkaninfo
--summary
else
echo
"vulkaninfo not available"
fi
echo
""
echo
"=== ENVIRONMENT VARIABLES ==="
echo
"DISPLAY:
$DISPLAY
"
echo
"XDG_SESSION_TYPE:
$XDG_SESSION_TYPE
"
echo
"QT_QPA_PLATFORM:
$QT_QPA_PLATFORM
"
echo
"LIBGL_ALWAYS_SOFTWARE:
$LIBGL_ALWAYS_SOFTWARE
"
echo
"MESA_GL_VERSION_OVERRIDE:
$MESA_GL_VERSION_OVERRIDE
"
echo
""
echo
"=== RUNNING MBETTERCLIENT WITH DEBUG LOGGING ==="
echo
"Please run the following command on your system:"
echo
"./MbetterClient --debug --debug-overlay --debug-player --no-fullscreen"
echo
""
echo
"This will:"
echo
"- Enable debug logging"
echo
"- Enable overlay debug mode"
echo
"- Enable player debug mode"
echo
"- Run in windowed mode for easier debugging"
echo
""
echo
"Then check the logs for:"
echo
"1. OVERLAY VISIBILITY CHECK messages"
echo
"2. QT WEBENGINE GPU ACCELERATION CHECK messages"
echo
"3. TEMPLATE LOADING messages"
echo
"4. GPU process monitoring messages"
echo
""
echo
"If overlay templates are not shown, look for:"
echo
"- 'NO GPU PROCESSES FOUND' warnings"
echo
"- Mesa software rendering detection"
echo
"- Template loading failures"
echo
"- Overlay window visibility issues"
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment