diff options
author | Nicolai Hähnle <[email protected]> | 2017-08-03 15:07:55 +0200 |
---|---|---|
committer | Nicolai Hähnle <[email protected]> | 2017-08-04 10:46:27 +0200 |
commit | 27ba094a4abe93c4a17f270d437b15195327f7e0 (patch) | |
tree | 36fc3be4fc82f9aa62b13ca00b4df2cebffd5e82 /src/gallium/auxiliary/pipe-loader | |
parent | ae7283dcbc00c6df07118c47f393ed5f52046050 (diff) |
pipe-loader: fix swrast probing
Missed updating this caller of pipe_loader_find_module.
Fixes: 0d7d60b7ea ("pipe-loader: pass only the driver_name to pipe_loader_find_module")
Tested-by: Dieter Nützel <[email protected]>
Reviewed-by: Marek Olšák <[email protected]>
Diffstat (limited to 'src/gallium/auxiliary/pipe-loader')
-rw-r--r-- | src/gallium/auxiliary/pipe-loader/pipe_loader_sw.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/pipe-loader/pipe_loader_sw.c b/src/gallium/auxiliary/pipe-loader/pipe_loader_sw.c index 696ba2c5338..677814ad263 100644 --- a/src/gallium/auxiliary/pipe-loader/pipe_loader_sw.c +++ b/src/gallium/auxiliary/pipe-loader/pipe_loader_sw.c @@ -100,7 +100,7 @@ pipe_loader_sw_probe_init_common(struct pipe_loader_sw_device *sdev) if (!sdev->dd) return false; #else - sdev->lib = pipe_loader_find_module(&sdev->base, PIPE_SEARCH_DIR); + sdev->lib = pipe_loader_find_module("swrast", PIPE_SEARCH_DIR); if (!sdev->lib) return false; |