2007-01-17 00:10:38 +00:00
|
|
|
--- compiz-0.3.6/src/main.c~ 2006-12-28 21:56:41.000000000 -0500
|
|
|
|
+++ compiz-0.3.6/src/main.c 2007-01-12 18:06:57.000000000 -0500
|
|
|
|
@@ -78,7 +78,7 @@
|
2006-07-18 17:15:08 +00:00
|
|
|
CompWindow *lastDamagedWindow = 0;
|
|
|
|
|
|
|
|
Bool replaceCurrentWm = FALSE;
|
|
|
|
-Bool indirectRendering = FALSE;
|
|
|
|
+Bool indirectRendering = TRUE;
|
2007-01-17 00:10:38 +00:00
|
|
|
Bool strictBinding = TRUE;
|
2006-11-23 06:26:01 +00:00
|
|
|
Bool noDetection = FALSE;
|
2006-07-18 17:15:08 +00:00
|
|
|
|
2007-01-17 00:10:38 +00:00
|
|
|
@@ -94,7 +94,7 @@
|
|
|
|
"[--bg-image PNG] "
|
2006-07-18 17:15:08 +00:00
|
|
|
"[--refresh-rate RATE]\n "
|
|
|
|
"[--fast-filter] "
|
2007-01-17 00:10:38 +00:00
|
|
|
- "[--indirect-rendering] "
|
|
|
|
+ "[--direct-rendering] "
|
|
|
|
"[--loose-binding] "
|
|
|
|
"[--replace]\n "
|
2006-07-18 17:15:08 +00:00
|
|
|
"[--sm-disable] "
|
2007-01-17 00:10:38 +00:00
|
|
|
@@ -188,9 +188,9 @@
|
|
|
|
{
|
|
|
|
defaultTextureFilter = "Fast";
|
|
|
|
}
|
|
|
|
- else if (!strcmp (argv[i], "--indirect-rendering"))
|
|
|
|
+ else if (!strcmp (argv[i], "--direct-rendering"))
|
|
|
|
{
|
|
|
|
- indirectRendering = TRUE;
|
|
|
|
+ indirectRendering = FALSE;
|
|
|
|
}
|
|
|
|
else if (!strcmp (argv[i], "--loose-binding"))
|
|
|
|
{
|