diff options
author | Chris Wilson <chris@chris-wilson.co.uk> | 2013-02-01 19:48:38 +0000 |
---|---|---|
committer | Chris Wilson <chris@chris-wilson.co.uk> | 2013-09-04 15:18:29 +0100 |
commit | 4dfd7674d88a267d0d89c31422f2e6c333ccf176 (patch) | |
tree | f94a15386332e1f8a0fb59fa6acb68ca147ba370 | |
parent | 42d94356f65972eb7fb8991234a4e9388c4c2031 (diff) |
intel: Select SNA as the default acceleration method
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
-rw-r--r-- | configure.ac | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/configure.ac b/configure.ac index 29c5c0b9..4e0c3cf8 100644 --- a/configure.ac +++ b/configure.ac @@ -328,7 +328,7 @@ AM_CONDITIONAL(XAA, test "x$XAA" = "xyes") AC_ARG_WITH(default-accel, AS_HELP_STRING([--with-default-accel], - [Select the default acceleration method [default=uxa if enabled, otherwise sna]]), + [Select the default acceleration method [default=sna if enabled, otherwise uxa]]), [accel="$withval"], [accel="auto"]) if test "x$accel" = "xyes"; then @@ -338,11 +338,11 @@ fi AC_MSG_CHECKING([which acceleration method to use by default]) if test "x$accel" = "xauto"; then - if test "x$UXA" != "xno"; then - accel="uxa" + if test "x$SNA" != "xno"; then + accel="sna" else - if test "x$SNA" != "xno"; then - accel="sna" + if test "x$UXA" != "xno"; then + accel="uxa" fi fi if test "x$accel" = "xauto" -a "x$KMS" = "xyes"; then |