2009-03-15 10:32:47 +00:00
|
|
|
#!/bin/bash
|
2008-12-04 20:59:54 +00:00
|
|
|
|
2009-03-15 10:32:47 +00:00
|
|
|
function runCompiz() {
|
2008-12-04 20:59:54 +00:00
|
|
|
gtk-window-decorator &
|
2011-01-18 13:53:18 +00:00
|
|
|
exec compiz ccp $@
|
2009-03-15 10:32:47 +00:00
|
|
|
}
|
|
|
|
|
2009-04-05 11:13:26 +00:00
|
|
|
ISSW=`glxinfo | grep "Software Rasterizer" -c`
|
2009-03-15 10:32:47 +00:00
|
|
|
|
2009-08-07 12:45:24 +00:00
|
|
|
# Try with direct rendering
|
|
|
|
HAVETFP=`glxinfo | grep texture_from_pixmap -c`
|
2009-03-15 17:55:22 +00:00
|
|
|
|
2009-08-22 14:42:23 +00:00
|
|
|
if ( [ $ISSW == 0 ] && [ $HAVETFP -gt 2 ] ); then
|
2009-08-07 12:45:24 +00:00
|
|
|
runCompiz $@
|
|
|
|
fi
|
2009-03-15 10:32:47 +00:00
|
|
|
|
|
|
|
# Try again with indirect rendering
|
|
|
|
export LIBGL_ALWAYS_INDIRECT=1
|
|
|
|
|
|
|
|
HAVETFP=`glxinfo | grep texture_from_pixmap -c`
|
|
|
|
|
2009-08-22 14:42:23 +00:00
|
|
|
if ( [ $ISSW == 0 ] && [ $HAVETFP -gt 2 ] ); then
|
2009-03-16 14:05:01 +00:00
|
|
|
runCompiz $@
|
2008-12-04 20:59:54 +00:00
|
|
|
fi
|
2009-03-15 10:32:47 +00:00
|
|
|
|
|
|
|
# Fall back to metacity
|
|
|
|
exec metacity $@
|