summaryrefslogtreecommitdiff
path: root/lib/mesa/src/gallium/auxiliary/target-helpers
diff options
context:
space:
mode:
authorJonathan Gray <jsg@cvs.openbsd.org>2020-01-22 02:13:18 +0000
committerJonathan Gray <jsg@cvs.openbsd.org>2020-01-22 02:13:18 +0000
commitfdcc03929065b5bf5dd93553db219ea3e05c8c34 (patch)
treeca90dc8d9e89febdcd4160956c1b8ec098a4efc9 /lib/mesa/src/gallium/auxiliary/target-helpers
parent3c9de4a7e13712b5696750bbd59a18c848742022 (diff)
Import Mesa 19.2.8
Diffstat (limited to 'lib/mesa/src/gallium/auxiliary/target-helpers')
-rw-r--r--lib/mesa/src/gallium/auxiliary/target-helpers/inline_sw_helper.h2
-rw-r--r--lib/mesa/src/gallium/auxiliary/target-helpers/sw_helper.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/mesa/src/gallium/auxiliary/target-helpers/inline_sw_helper.h b/lib/mesa/src/gallium/auxiliary/target-helpers/inline_sw_helper.h
index 5bb77a5bd..36146cf1e 100644
--- a/lib/mesa/src/gallium/auxiliary/target-helpers/inline_sw_helper.h
+++ b/lib/mesa/src/gallium/auxiliary/target-helpers/inline_sw_helper.h
@@ -41,7 +41,7 @@ sw_screen_create_named(struct sw_winsys *winsys, const char *driver)
if (screen == NULL && strcmp(driver, "virpipe") == 0) {
struct virgl_winsys *vws;
vws = virgl_vtest_winsys_wrap(winsys);
- screen = virgl_create_screen(vws);
+ screen = virgl_create_screen(vws, NULL);
}
#endif
diff --git a/lib/mesa/src/gallium/auxiliary/target-helpers/sw_helper.h b/lib/mesa/src/gallium/auxiliary/target-helpers/sw_helper.h
index 5e4e9f78a..953412a3f 100644
--- a/lib/mesa/src/gallium/auxiliary/target-helpers/sw_helper.h
+++ b/lib/mesa/src/gallium/auxiliary/target-helpers/sw_helper.h
@@ -43,7 +43,7 @@ sw_screen_create_named(struct sw_winsys *winsys, const char *driver)
if (screen == NULL && strcmp(driver, "virpipe") == 0) {
struct virgl_winsys *vws;
vws = virgl_vtest_winsys_wrap(winsys);
- screen = virgl_create_screen(vws);
+ screen = virgl_create_screen(vws, NULL);
}
#endif