-
Notifications
You must be signed in to change notification settings - Fork 162
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
Draw calls missing in apitrace (regression) #240
Comments
It looks like before that commit, there was a bug that caused libGL.so to always be used even if libOpenGL.so was present. After the commit, libOpenGL.so will be used if it is found, else libGL.so will be used. |
@linkmauve could you please check, if there is libOpenGL.so.0 in your system libraries (I have it in /usr/lib64), and move it somewhere else to test, if it will fix your issue? My guess is that apitrace doesn't support libglvnd. |
Also it is worthy to check if setting TRACE_LIBGL=libOpenGL.so.0 will help or not. This will work only if you move libOpenGL.so.0 back. |
@ya-isakov libglvnd should just work, even if libepoxy uses If it were me, first I would check if apitrace wraps |
Commit was reverted, and I released 1.5.8. |
dbfa4b2 is the first bad commit.
This happens with apitrace master, gtk4-demo records everything (?) except draw calls like
glDrawArrays()
.The text was updated successfully, but these errors were encountered: