From: Jakob Bornecrantz Date: Wed, 14 Apr 2010 20:44:48 +0000 (+0100) Subject: swrastg: Fix defines to be able to load more then one sw driver X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=cb56b31f84d833551997a5eb792ea271d84746f8;p=mesa.git swrastg: Fix defines to be able to load more then one sw driver --- diff --git a/src/gallium/targets/dri-swrast/swrast_drm_api.c b/src/gallium/targets/dri-swrast/swrast_drm_api.c index 99c25543a76..63b935bb07b 100644 --- a/src/gallium/targets/dri-swrast/swrast_drm_api.c +++ b/src/gallium/targets/dri-swrast/swrast_drm_api.c @@ -68,16 +68,16 @@ swrast_create_screen(struct sw_winsys *winsys) #if defined(GALLIUM_CELL) if (screen == NULL && strcmp(driver, "cell") == 0) screen = cell_create_screen( winsys ); -#elif defined(GALLIUM_LLVMPIPE) +#endif + +#if defined(GALLIUM_LLVMPIPE) if (screen == NULL && strcmp(driver, "llvmpipe") == 0) screen = llvmpipe_create_screen( winsys ); -#elif defined(GALLIUM_SOFTPIPE) +#endif + +#if defined(GALLIUM_SOFTPIPE) if (screen == NULL) screen = softpipe_create_screen( winsys ); - - (void) driver; -#else - (void) driver; #endif return screen;