Bug Report OBS UI locking up on Linux Mint

lewtwo

New Member
ANyone else haveing problems with the OBS UI locking up on Linux.
I have to force the application to shutdown in order to stop a recording.
Linux Mint 19 Tara
EZcap 261 capture card
Recording only, no streaming
===========Error===========
06:30:03 AM.914: X Error: GLXBadDrawable, Major opcode: 154, Minor opcode: 26, Serial: 27164​
06:30:03 AM.914: Failed to make context current.​
06:30:03 AM.916: X Error: GLXBadDrawable, Major opcode: 154, Minor opcode: 26, Serial: 27166​
06:30:03 AM.916: Failed to make context current.​
06:30:03 AM.916: Failed to fetch parent window geometry!​
06:30:03 AM.919: Failed to fetch parent window geometry!​
06:30:03 AM.919: Failed to fetch parent window geometry!​
06:30:03 AM.919: Failed to fetch parent window geometry!​
06:30:03 AM.944: X Error: GLXBadDrawable, Major opcode: 154, Minor opcode: BadLength (poly request too large or internal Xlib length error), Serial: 27171​
06:30:03 AM.944: X Error: GLXBadDrawable, Major opcode: 154, Minor opcode: BadAlloc (insufficient resources for operation), Serial: 27172​
06:30:03 AM.944: X Error: GLXBadDrawable, Major opcode: 154, Minor opcode: 26, Serial: 27174​
06:30:03 AM.944: Failed to make context current.​
==========Repeat============
OBS Lockup.jpg
 

Attachments

  • 2018-11-16 06-28-41.txt.zip
    71.5 KB · Views: 20
Last edited:

lewtwo

New Member
No Responce ..... well this turned out to be such a problem that I cam up with a scrip "killobs" for my bin folder.

killme=$(ps -ef | grep obs)
echo $killme
killme=${killme:8:6}
kill $killme
 
Top