diff options
author | Emil Velikov <emil.l.velikov@gmail.com> | 2015-11-09 11:17:07 +0000 |
---|---|---|
committer | Emil Velikov <emil.l.velikov@gmail.com> | 2015-11-20 10:56:34 +0000 |
commit | 2bd9116b8249fdb1711335711f8daef5f68752a6 (patch) | |
tree | aa32cf15c81e25c3139deaa5f5a2721bdf2f2429 /src/gallium/state_trackers/omx | |
parent | c31218cdb342482064345d78ada691521c367446 (diff) | |
download | external_mesa3d-2bd9116b8249fdb1711335711f8daef5f68752a6.zip external_mesa3d-2bd9116b8249fdb1711335711f8daef5f68752a6.tar.gz external_mesa3d-2bd9116b8249fdb1711335711f8daef5f68752a6.tar.bz2 |
auxiliary/vl: rename vl_screen_create to vl_dri2_screen_create
In a preparation of having proper multi-platform/backend handling in VL.
With follow up commits we'll introduce a dispatch within vl_screen
similar to the one in pipe_screen. This way any VL state-tracker can
operate seamlessly, considering the backend/platform is properly setup.
Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com>
Acked-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'src/gallium/state_trackers/omx')
-rw-r--r-- | src/gallium/state_trackers/omx/entrypoint.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/state_trackers/omx/entrypoint.c b/src/gallium/state_trackers/omx/entrypoint.c index 4716333..dd72b29 100644 --- a/src/gallium/state_trackers/omx/entrypoint.c +++ b/src/gallium/state_trackers/omx/entrypoint.c @@ -97,7 +97,7 @@ struct vl_screen *omx_get_screen(void) if (!omx_display) goto error; - omx_screen = vl_screen_create(omx_display, 0); + omx_screen = vl_dri2_screen_create(omx_display, 0); if (!omx_screen) { XCloseDisplay(omx_display); goto error; |