summaryrefslogtreecommitdiff
path: root/src/intel_module.c
diff options
context:
space:
mode:
authorChris Wilson <chris@chris-wilson.co.uk>2014-11-05 11:56:20 +0000
committerChris Wilson <chris@chris-wilson.co.uk>2014-11-06 16:55:46 +0000
commit0aa2edbd29c8dd26a5f3748e3875c445ea358a6d (patch)
treea9702e0e957ee6c1826807c12af640184580c9c5 /src/intel_module.c
parent4281bbdd5be1f846c217cdf6d09536779cd324ce (diff)
Remove defunct glamor support
It never was a stable or complete replacement, and now it is incorporated in Xorg itself! Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Diffstat (limited to 'src/intel_module.c')
-rw-r--r--src/intel_module.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/intel_module.c b/src/intel_module.c
index 2fbb4df2..102d52aa 100644
--- a/src/intel_module.c
+++ b/src/intel_module.c
@@ -500,7 +500,7 @@ _xf86findDriver(const char *ident, XF86ConfDevicePtr p)
return NULL;
}
-static enum accel_method { NOACCEL, SNA, UXA, GLAMOR } get_accel_method(void)
+static enum accel_method { NOACCEL, SNA, UXA } get_accel_method(void)
{
enum accel_method accel_method = DEFAULT_ACCEL_METHOD;
XF86ConfDevicePtr dev;
@@ -520,8 +520,6 @@ static enum accel_method { NOACCEL, SNA, UXA, GLAMOR } get_accel_method(void)
accel_method = SNA;
else if (strcasecmp(s, "uxa") == 0)
accel_method = UXA;
- else if (strcasecmp(s, "glamor") == 0)
- accel_method = GLAMOR;
}
}
@@ -583,7 +581,6 @@ intel_scrn_create(DriverPtr driver,
#if !USE_SNA
case NOACCEL:
#endif
- case GLAMOR:
case UXA:
return intel_init_scrn(scrn);
#endif