diff options
author | Christoph Bumiller <[email protected]> | 2014-11-17 16:58:24 +0100 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2014-11-18 02:02:53 +0000 |
commit | e23d63cffd6103b8073c61f2740eb654c5c9b2c3 (patch) | |
tree | ada4f3c26e9ae74b874fc7b87df14d660198fce5 /src/gallium/Automake.inc | |
parent | 8314315dff9d06257a17881052def017032eec7f (diff) |
gallium/auxiliary: implement sw_probe_wrapped (v2)
Implement pipe_loader_sw_probe_wrapped which allows to use the wrapped
software renderer backend when using the pipe loader.
v2: - remove unneeded ifdef
- use GALLIUM_PIPE_LOADER_WINSYS_LIBS
- check for CALLOC_STRUCT
thanks to Emil Velikov
Acked-by: Jose Fonseca <[email protected]>
Signed-off-by: David Heidelberg <[email protected]>
Diffstat (limited to 'src/gallium/Automake.inc')
-rw-r--r-- | src/gallium/Automake.inc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gallium/Automake.inc b/src/gallium/Automake.inc index c43f735c3f3..9b312b113ea 100644 --- a/src/gallium/Automake.inc +++ b/src/gallium/Automake.inc @@ -58,7 +58,8 @@ GALLIUM_WINSYS_CFLAGS = \ GALLIUM_PIPE_LOADER_WINSYS_LIBS = \ - $(top_builddir)/src/gallium/winsys/sw/null/libws_null.la + $(top_builddir)/src/gallium/winsys/sw/null/libws_null.la \ + $(top_builddir)/src/gallium/winsys/sw/wrapper/libwsw.la if HAVE_DRISW GALLIUM_PIPE_LOADER_WINSYS_LIBS += \ |