From 4dfd7674d88a267d0d89c31422f2e6c333ccf176 Mon Sep 17 00:00:00 2001 From: Chris Wilson Date: Fri, 1 Feb 2013 19:48:38 +0000 Subject: intel: Select SNA as the default acceleration method Signed-off-by: Chris Wilson --- configure.ac | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/configure.ac b/configure.ac index 29c5c0b92..4e0c3cf84 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 -- cgit v1.2.3