2007-10-31, 14:31
I had some problems with tearing when using XBMC linux on my HTPC (Shuttle SG33G5M, Intel GMA3100 onboard video).
After some searching I found this info on the freedesktop wiki:
http://dri.freedesktop.org/wiki/Configur...astructure
After creating an /etc/drirc config file with the following contents my tearing problems were gone:
With the tool xdriinfo you can query your system for which driver you are using and which options are set (xdriinfo options 0).
Maybe this might be helpful for other people too having the same problems.
After some searching I found this info on the freedesktop wiki:
http://dri.freedesktop.org/wiki/Configur...astructure
After creating an /etc/drirc config file with the following contents my tearing problems were gone:
Code:
<driconf>
<device screen="0" driver="i915">
<application name="all">
<!-- Always synchronize with vertical refresh to avoid tearing -->
<option name="vblank_mode" value="3"/>
</application>
</device>
</driconf>
With the tool xdriinfo you can query your system for which driver you are using and which options are set (xdriinfo options 0).
Maybe this might be helpful for other people too having the same problems.