From: Tim Rowley Date: Wed, 24 Feb 2016 23:45:55 +0000 (-0600) Subject: gallium/target-helpers: add OpenSWR driver X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=da4f95d168fa35234a1ed8e6b27a38fd8e8f7498;p=mesa.git gallium/target-helpers: add OpenSWR driver Reviewed-by: Roland Scheidegger Reviewed-by: Emil Velikov Acked-by: Jose Fonseca --- diff --git a/src/gallium/auxiliary/target-helpers/inline_sw_helper.h b/src/gallium/auxiliary/target-helpers/inline_sw_helper.h index a9ab16f2b54..5bb77a5bde2 100644 --- a/src/gallium/auxiliary/target-helpers/inline_sw_helper.h +++ b/src/gallium/auxiliary/target-helpers/inline_sw_helper.h @@ -6,6 +6,9 @@ #include "util/u_debug.h" #include "state_tracker/sw_winsys.h" +#ifdef GALLIUM_SWR +#include "swr/swr_public.h" +#endif /* Helper function to choose and instantiate one of the software rasterizers: * llvmpipe, softpipe. @@ -43,10 +46,15 @@ sw_screen_create_named(struct sw_winsys *winsys, const char *driver) #endif #if defined(GALLIUM_SOFTPIPE) - if (screen == NULL) + if (screen == NULL && strcmp(driver, "softpipe") == 0) screen = softpipe_create_screen(winsys); #endif +#if defined(GALLIUM_SWR) + if (screen == NULL && strcmp(driver, "swr") == 0) + screen = swr_create_screen(winsys); +#endif + return screen; } @@ -61,6 +69,8 @@ sw_screen_create(struct sw_winsys *winsys) default_driver = "llvmpipe"; #elif defined(GALLIUM_SOFTPIPE) default_driver = "softpipe"; +#elif defined(GALLIUM_SWR) + default_driver = "swr"; #else default_driver = ""; #endif