diff options
author | Chris Wilson <chris@chris-wilson.co.uk> | 2012-11-08 08:55:25 +0000 |
---|---|---|
committer | Chris Wilson <chris@chris-wilson.co.uk> | 2012-11-08 08:58:22 +0000 |
commit | b7d2fcf47a9569d0944097a8be60ca3be72b42f6 (patch) | |
tree | d715cc91c30254410e7741e4eae4df96a5de0b7e /src/intel_options.c | |
parent | cefce9c81585b73db7620e08fcf60c89a8204873 (diff) |
Remove reliance on hard-coded DRI name
This provides for using the existing DDX with future DRI drivers which
may break from the traditional names - but only with the help of the
user/packager. This scheme needs to be replaced with a robust mechanism
for driver loading if AIGLX and co are to be kept.
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Diffstat (limited to 'src/intel_options.c')
-rw-r--r-- | src/intel_options.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/intel_options.c b/src/intel_options.c index dcab9e72..443e84d7 100644 --- a/src/intel_options.c +++ b/src/intel_options.c @@ -8,7 +8,7 @@ const OptionInfoRec intel_options[] = { {OPTION_ACCEL_DISABLE, "NoAccel", OPTV_BOOLEAN, {0}, 0}, {OPTION_ACCEL_METHOD, "AccelMethod", OPTV_STRING, {0}, 0}, {OPTION_BACKLIGHT, "Backlight", OPTV_STRING, {0}, 0}, - {OPTION_DRI, "DRI", OPTV_BOOLEAN, {0}, 1}, + {OPTION_DRI, "DRI", OPTV_STRING, {0}, 0}, {OPTION_COLOR_KEY, "ColorKey", OPTV_INTEGER, {0}, 0}, {OPTION_VIDEO_KEY, "VideoKey", OPTV_INTEGER, {0}, 0}, {OPTION_TILING_2D, "Tiling", OPTV_BOOLEAN, {0}, 1}, |