summaryrefslogtreecommitdiffstats
path: root/src/gallium/targets/pipe-loader/pipe_radeonsi.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/gallium/targets/pipe-loader/pipe_radeonsi.c')
-rw-r--r--src/gallium/targets/pipe-loader/pipe_radeonsi.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/targets/pipe-loader/pipe_radeonsi.c b/src/gallium/targets/pipe-loader/pipe_radeonsi.c
index b6a78e42cbe..1bbd97ff802 100644
--- a/src/gallium/targets/pipe-loader/pipe_radeonsi.c
+++ b/src/gallium/targets/pipe-loader/pipe_radeonsi.c
@@ -11,10 +11,10 @@ create_screen(int fd, unsigned flags)
struct radeon_winsys *rw;
/* First, try amdgpu. */
- rw = amdgpu_winsys_create(fd, radeonsi_screen_create);
+ rw = amdgpu_winsys_create(fd, flags, radeonsi_screen_create);
if (!rw)
- rw = radeon_drm_winsys_create(fd, radeonsi_screen_create);
+ rw = radeon_drm_winsys_create(fd, flags, radeonsi_screen_create);
return rw ? debug_screen_wrap(rw->screen) : NULL;
}