diff options
author | Chris Wilson <chris@chris-wilson.co.uk> | 2012-07-29 22:51:26 +0100 |
---|---|---|
committer | Chris Wilson <chris@chris-wilson.co.uk> | 2012-07-29 22:51:26 +0100 |
commit | 0fd680ff52f7ce0a101c617dfb8997c4e228e3ad (patch) | |
tree | d2016fc252f773e44c78f6e7cc21a71706e4cf68 /src/intel_options.c | |
parent | 3d45f0affe263985f440e144203ed7cbb3803696 (diff) |
Don't disable acceleration on 830/845g by default
Run the risk of a GPU hang (it shouldn't endanger the entire machine
normally) and let the user elect to disable it through
Option "NoAccel" "true"
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Diffstat (limited to 'src/intel_options.c')
-rw-r--r-- | src/intel_options.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/intel_options.c b/src/intel_options.c index 77832aad..7dbbc7ed 100644 --- a/src/intel_options.c +++ b/src/intel_options.c @@ -5,6 +5,7 @@ #include "intel_options.h" const OptionInfoRec intel_options[] = { + {OPTION_ACCEL_DISABLE, "NoAccel", OPTV_BOOLEAN, {0}, 0}, {OPTION_ACCEL_METHOD, "AccelMethod", OPTV_STRING, {0}, 0}, {OPTION_DRI, "DRI", OPTV_BOOLEAN, {0}, 1}, {OPTION_COLOR_KEY, "ColorKey", OPTV_INTEGER, {0}, 0}, |