diff options
author | Eric Anholt <eric@anholt.net> | 2017-08-25 15:34:22 -0700 |
---|---|---|
committer | Eric Anholt <eric@anholt.net> | 2018-05-16 21:19:07 +0100 |
commit | c4c488a2aeb24c0f468664c0cacd0d01111a4e46 (patch) | |
tree | ad560d93a05e5eae1227775c9e1627e67256d1bd /src | |
parent | 8a793d42f1ccef2c87053a1d9a130b49cfb2b84f (diff) |
v3d: Rename the vc5_dri.so driver to v3d_dri.so.
This allows the driver to load against the merged kernel DRM driver. In
the process, rename most of the build system variables and gallium
plumbing functions.
Diffstat (limited to 'src')
26 files changed, 80 insertions, 80 deletions
diff --git a/src/broadcom/Makefile.vc5.am b/src/broadcom/Makefile.vc5.am index c56cf89228..97ef2d7455 100644 --- a/src/broadcom/Makefile.vc5.am +++ b/src/broadcom/Makefile.vc5.am @@ -3,9 +3,9 @@ noinst_LTLIBRARIES += libbroadcom_v33.la noinst_LTLIBRARIES += libbroadcom_v41.la noinst_LTLIBRARIES += libbroadcom_v42.la -if USE_VC5_SIMULATOR -AM_CFLAGS += $(VC5_SIMULATOR_CFLAGS) -libbroadcom_la_LDFLAGS = $(VC5_SIMULATOR_LIBS) +if USE_V3D_SIMULATOR +AM_CFLAGS += $(V3D_SIMULATOR_CFLAGS) +libbroadcom_la_LDFLAGS = $(V3D_SIMULATOR_LIBS) endif libbroadcom_v33_la_SOURCES = $(BROADCOM_PER_VERSION_SOURCES) diff --git a/src/broadcom/meson.build b/src/broadcom/meson.build index 6c8ea61344..e4f5715261 100644 --- a/src/broadcom/meson.build +++ b/src/broadcom/meson.build @@ -22,14 +22,14 @@ inc_broadcom = include_directories('.', 'cle') subdir('cle') -vc5_versions = ['33', '41', '42'] +v3d_versions = ['33', '41', '42'] -if with_gallium_vc5 +if with_gallium_v3d subdir('compiler') subdir('qpu') per_version_libs = [] - foreach ver : vc5_versions + foreach ver : v3d_versions per_version_libs += static_library( 'libbroadcom-v' + ver, [ @@ -42,8 +42,8 @@ if with_gallium_vc5 ) endforeach - libbroadcom_vc5 = static_library( - 'libbroadcom_vc5', + libbroadcom_v3d = static_library( + 'libbroadcom_v3d', [ files('common/v3d_debug.c', 'clif/clif_dump.c'), v3d_xml_pack, diff --git a/src/gallium/Makefile.am b/src/gallium/Makefile.am index c153a5d44d..351bbf4fa6 100644 --- a/src/gallium/Makefile.am +++ b/src/gallium/Makefile.am @@ -88,8 +88,8 @@ if HAVE_GALLIUM_VC4 SUBDIRS += drivers/vc4 winsys/vc4/drm endif -## vc5 -if HAVE_GALLIUM_VC5 +## v3d +if HAVE_GALLIUM_V3D SUBDIRS += drivers/vc5 winsys/vc5/drm endif diff --git a/src/gallium/auxiliary/pipe-loader/pipe_loader_drm.c b/src/gallium/auxiliary/pipe-loader/pipe_loader_drm.c index 3b959e5398..6d2ed6e76f 100644 --- a/src/gallium/auxiliary/pipe-loader/pipe_loader_drm.c +++ b/src/gallium/auxiliary/pipe-loader/pipe_loader_drm.c @@ -116,13 +116,13 @@ static const struct drm_driver_descriptor driver_descriptors[] = { .configuration = pipe_default_configuration_query, }, { - .driver_name = "vc4", - .create_screen = pipe_vc4_create_screen, + .driver_name = "v3d", + .create_screen = pipe_v3d_create_screen, .configuration = pipe_default_configuration_query, }, { - .driver_name = "vc5", - .create_screen = pipe_vc5_create_screen, + .driver_name = "vc4", + .create_screen = pipe_vc4_create_screen, .configuration = pipe_default_configuration_query, }, { diff --git a/src/gallium/auxiliary/target-helpers/drm_helper.h b/src/gallium/auxiliary/target-helpers/drm_helper.h index 7dc2497c08..c494848888 100644 --- a/src/gallium/auxiliary/target-helpers/drm_helper.h +++ b/src/gallium/auxiliary/target-helpers/drm_helper.h @@ -310,24 +310,24 @@ pipe_vc4_create_screen(int fd, const struct pipe_screen_config *config) #endif -#ifdef GALLIUM_VC5 +#ifdef GALLIUM_V3D #include "vc5/drm/vc5_drm_public.h" struct pipe_screen * -pipe_vc5_create_screen(int fd, const struct pipe_screen_config *config) +pipe_v3d_create_screen(int fd, const struct pipe_screen_config *config) { struct pipe_screen *screen; - screen = vc5_drm_screen_create(fd); + screen = v3d_drm_screen_create(fd); return screen ? debug_screen_wrap(screen) : NULL; } #else struct pipe_screen * -pipe_vc5_create_screen(int fd, const struct pipe_screen_config *config) +pipe_v3d_create_screen(int fd, const struct pipe_screen_config *config) { - fprintf(stderr, "vc5: driver missing\n"); + fprintf(stderr, "v3d: driver missing\n"); return NULL; } diff --git a/src/gallium/auxiliary/target-helpers/drm_helper_public.h b/src/gallium/auxiliary/target-helpers/drm_helper_public.h index c1a7bf4e25..155c525762 100644 --- a/src/gallium/auxiliary/target-helpers/drm_helper_public.h +++ b/src/gallium/auxiliary/target-helpers/drm_helper_public.h @@ -37,10 +37,10 @@ struct pipe_screen * pipe_virgl_create_screen(int fd, const struct pipe_screen_config *config); struct pipe_screen * -pipe_vc4_create_screen(int fd, const struct pipe_screen_config *config); +pipe_v3d_create_screen(int fd, const struct pipe_screen_config *config); struct pipe_screen * -pipe_vc5_create_screen(int fd, const struct pipe_screen_config *config); +pipe_vc4_create_screen(int fd, const struct pipe_screen_config *config); struct pipe_screen * pipe_pl111_create_screen(int fd, const struct pipe_screen_config *config); diff --git a/src/gallium/drivers/vc5/Automake.inc b/src/gallium/drivers/vc5/Automake.inc index 57c8a28efe..612bc21615 100644 --- a/src/gallium/drivers/vc5/Automake.inc +++ b/src/gallium/drivers/vc5/Automake.inc @@ -1,10 +1,10 @@ -if HAVE_GALLIUM_VC5 +if HAVE_GALLIUM_V3D -TARGET_DRIVERS += vc5 -TARGET_CPPFLAGS += -DGALLIUM_VC5 +TARGET_DRIVERS += v3d +TARGET_CPPFLAGS += -DGALLIUM_V3D TARGET_LIB_DEPS += \ - $(top_builddir)/src/gallium/winsys/vc5/drm/libvc5drm.la \ - $(top_builddir)/src/gallium/drivers/vc5/libvc5.la \ + $(top_builddir)/src/gallium/winsys/vc5/drm/libv3ddrm.la \ + $(top_builddir)/src/gallium/drivers/vc5/libv3d.la \ $(top_builddir)/src/broadcom/libbroadcom.la if !HAVE_GALLIUM_VC4 diff --git a/src/gallium/drivers/vc5/Makefile.am b/src/gallium/drivers/vc5/Makefile.am index 419c9ab8ea..2b4c364c24 100644 --- a/src/gallium/drivers/vc5/Makefile.am +++ b/src/gallium/drivers/vc5/Makefile.am @@ -26,31 +26,31 @@ AM_CFLAGS = \ -I$(top_builddir)/src/compiler/nir \ -I$(top_builddir)/src/broadcom \ $(LIBDRM_CFLAGS) \ - $(VC5_SIMULATOR_CFLAGS) \ + $(V3D_SIMULATOR_CFLAGS) \ $(GALLIUM_DRIVER_CFLAGS) \ $(VALGRIND_CFLAGS) \ $() noinst_LTLIBRARIES = \ - libvc5.la \ - libvc5_v33.la \ - libvc5_v41.la \ + libv3d.la \ + libv3d_v33.la \ + libv3d_v41.la \ $() -libvc5_v33_la_SOURCES = $(VC5_PER_VERSION_SOURCES) -libvc5_v33_la_CFLAGS = $(AM_CFLAGS) -DV3D_VERSION=33 +libv3d_v33_la_SOURCES = $(V3D_PER_VERSION_SOURCES) +libv3d_v33_la_CFLAGS = $(AM_CFLAGS) -DV3D_VERSION=33 -libvc5_v41_la_SOURCES = $(VC5_PER_VERSION_SOURCES) -libvc5_v41_la_CFLAGS = $(AM_CFLAGS) -DV3D_VERSION=41 +libv3d_v41_la_SOURCES = $(V3D_PER_VERSION_SOURCES) +libv3d_v41_la_CFLAGS = $(AM_CFLAGS) -DV3D_VERSION=41 -libvc5_la_SOURCES = $(C_SOURCES) +libv3d_la_SOURCES = $(C_SOURCES) -libvc5_la_LDFLAGS = \ - $(VC5_SIMULATOR_LIBS) \ +libv3d_la_LDFLAGS = \ + $(V3D_SIMULATOR_LIBS) \ $(NULL) -libvc5_la_LIBADD = \ - libvc5_v33.la \ - libvc5_v41.la \ +libv3d_la_LIBADD = \ + libv3d_v33.la \ + libv3d_v41.la \ $() EXTRA_DIST = meson.build diff --git a/src/gallium/drivers/vc5/Makefile.sources b/src/gallium/drivers/vc5/Makefile.sources index 486857c1f0..36fcc0b90b 100644 --- a/src/gallium/drivers/vc5/Makefile.sources +++ b/src/gallium/drivers/vc5/Makefile.sources @@ -24,7 +24,7 @@ C_SOURCES := \ vc5_uniforms.c \ $() -VC5_PER_VERSION_SOURCES = \ +V3D_PER_VERSION_SOURCES = \ v3dx_context.h \ v3dx_format_table.c \ v3dx_job.c \ diff --git a/src/gallium/drivers/vc5/meson.build b/src/gallium/drivers/vc5/meson.build index 4f20c2697e..63460dc443 100644 --- a/src/gallium/drivers/vc5/meson.build +++ b/src/gallium/drivers/vc5/meson.build @@ -18,7 +18,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. -files_libvc5 = files( +files_libv3d = files( 'vc5_blit.c', 'vc5_bufmgr.c', 'vc5_bufmgr.h', @@ -55,15 +55,15 @@ files_per_version = files( v3dv3_c_args = [] dep_v3dv3 = dependency('v3dv3') if dep_v3dv3.found() - v3dv3_c_args = '-DUSE_VC5_SIMULATOR' + v3dv3_c_args = '-DUSE_V3D_SIMULATOR' endif -vc5_versions = ['33', '41'] +v3d_versions = ['33', '41'] per_version_libs = [] -foreach ver : vc5_versions +foreach ver : v3d_versions per_version_libs += static_library( - 'vc5-v' + ver, + 'v3d-v' + ver, [files_per_version, v3d_xml_pack, nir_opcodes_h, nir_builder_opcodes_h], include_directories : [ inc_src, inc_include, inc_gallium, inc_gallium_aux, inc_broadcom, @@ -76,9 +76,9 @@ foreach ver : vc5_versions endforeach -libvc5 = static_library( - 'vc5', - [files_libvc5, v3d_xml_pack], +libv3d = static_library( + 'v3d', + [files_libv3d, v3d_xml_pack], include_directories : [ inc_src, inc_include, inc_gallium, inc_gallium_aux, inc_broadcom, inc_gallium_drivers, inc_drm_uapi, @@ -89,8 +89,8 @@ libvc5 = static_library( link_with: per_version_libs, ) -driver_vc5 = declare_dependency( - compile_args : '-DGALLIUM_VC5', - link_with : [libvc5, libvc5winsys, libbroadcom_cle, libbroadcom_vc5], +driver_v3d = declare_dependency( + compile_args : '-DGALLIUM_V3D', + link_with : [libv3d, libv3dwinsys, libbroadcom_cle, libbroadcom_v3d], dependencies : idep_nir, ) diff --git a/src/gallium/drivers/vc5/v3dx_simulator.c b/src/gallium/drivers/vc5/v3dx_simulator.c index e1589d44b2..1162869be2 100644 --- a/src/gallium/drivers/vc5/v3dx_simulator.c +++ b/src/gallium/drivers/vc5/v3dx_simulator.c @@ -31,7 +31,7 @@ * we support. */ -#ifdef USE_VC5_SIMULATOR +#ifdef USE_V3D_SIMULATOR #include "vc5_screen.h" #include "vc5_context.h" @@ -187,4 +187,4 @@ v3dX(simulator_flush)(struct v3d_hw *v3d, struct drm_v3d_submit_cl *submit, } } -#endif /* USE_VC5_SIMULATOR */ +#endif /* USE_V3D_SIMULATOR */ diff --git a/src/gallium/drivers/vc5/vc5_bufmgr.c b/src/gallium/drivers/vc5/vc5_bufmgr.c index 28a7b008f9..2773df3cf2 100644 --- a/src/gallium/drivers/vc5/vc5_bufmgr.c +++ b/src/gallium/drivers/vc5/vc5_bufmgr.c @@ -348,7 +348,7 @@ vc5_bo_open_handle(struct vc5_screen *screen, bo->name = "winsys"; bo->private = false; -#ifdef USE_VC5_SIMULATOR +#ifdef USE_V3D_SIMULATOR vc5_simulator_open_from_handle(screen->fd, winsys_stride, bo->handle, bo->size); bo->map = malloc(bo->size); diff --git a/src/gallium/drivers/vc5/vc5_context.h b/src/gallium/drivers/vc5/vc5_context.h index ad52ea6129..5df02b3907 100644 --- a/src/gallium/drivers/vc5/vc5_context.h +++ b/src/gallium/drivers/vc5/vc5_context.h @@ -47,7 +47,7 @@ void vc5_job_add_bo(struct vc5_job *job, struct vc5_bo *bo); #include "vc5_resource.h" #include "vc5_cl.h" -#ifdef USE_VC5_SIMULATOR +#ifdef USE_V3D_SIMULATOR #define using_vc5_simulator true #else #define using_vc5_simulator false diff --git a/src/gallium/drivers/vc5/vc5_job.c b/src/gallium/drivers/vc5/vc5_job.c index 3da6ba82f4..7973b9e682 100644 --- a/src/gallium/drivers/vc5/vc5_job.c +++ b/src/gallium/drivers/vc5/vc5_job.c @@ -410,7 +410,7 @@ vc5_job_submit(struct vc5_context *vc5, struct vc5_job *job) if (!(V3D_DEBUG & V3D_DEBUG_NORAST)) { int ret; -#ifndef USE_VC5_SIMULATOR +#ifndef USE_V3D_SIMULATOR ret = drmIoctl(vc5->fd, DRM_IOCTL_V3D_SUBMIT_CL, &job->submit); #else ret = vc5_simulator_flush(vc5, &job->submit, job); diff --git a/src/gallium/drivers/vc5/vc5_screen.c b/src/gallium/drivers/vc5/vc5_screen.c index c36495f646..9b36785732 100644 --- a/src/gallium/drivers/vc5/vc5_screen.c +++ b/src/gallium/drivers/vc5/vc5_screen.c @@ -598,7 +598,7 @@ vc5_screen_get_compiler_options(struct pipe_screen *pscreen, } struct pipe_screen * -vc5_screen_create(int fd) +v3d_screen_create(int fd) { struct vc5_screen *screen = rzalloc(NULL, struct vc5_screen); struct pipe_screen *pscreen; @@ -617,7 +617,7 @@ vc5_screen_create(int fd) (void)mtx_init(&screen->bo_handles_mutex, mtx_plain); screen->bo_handles = util_hash_table_create(handle_hash, handle_compare); -#if defined(USE_VC5_SIMULATOR) +#if defined(USE_V3D_SIMULATOR) vc5_simulator_init(screen); #endif diff --git a/src/gallium/drivers/vc5/vc5_screen.h b/src/gallium/drivers/vc5/vc5_screen.h index 9a7c11a63b..975bfe01a7 100644 --- a/src/gallium/drivers/vc5/vc5_screen.h +++ b/src/gallium/drivers/vc5/vc5_screen.h @@ -93,7 +93,7 @@ vc5_screen(struct pipe_screen *screen) return (struct vc5_screen *)screen; } -struct pipe_screen *vc5_screen_create(int fd); +struct pipe_screen *v3d_screen_create(int fd); void vc5_fence_init(struct vc5_screen *screen); diff --git a/src/gallium/drivers/vc5/vc5_simulator.c b/src/gallium/drivers/vc5/vc5_simulator.c index 7c6f1ce0a4..4a1650074c 100644 --- a/src/gallium/drivers/vc5/vc5_simulator.c +++ b/src/gallium/drivers/vc5/vc5_simulator.c @@ -46,7 +46,7 @@ * BOs). */ -#ifdef USE_VC5_SIMULATOR +#ifdef USE_V3D_SIMULATOR #include <sys/mman.h> #include "util/hash_table.h" @@ -657,4 +657,4 @@ vc5_simulator_destroy(struct vc5_screen *screen) mtx_unlock(&sim_state.mutex); } -#endif /* USE_VC5_SIMULATOR */ +#endif /* USE_V3D_SIMULATOR */ diff --git a/src/gallium/drivers/vc5/vc5_simulator_wrapper.cpp b/src/gallium/drivers/vc5/vc5_simulator_wrapper.cpp index 5776aea20b..bee3ce70bf 100644 --- a/src/gallium/drivers/vc5/vc5_simulator_wrapper.cpp +++ b/src/gallium/drivers/vc5/vc5_simulator_wrapper.cpp @@ -27,7 +27,7 @@ * vc5_simulator.c code to use. */ -#ifdef USE_VC5_SIMULATOR +#ifdef USE_V3D_SIMULATOR #include "vc5_simulator_wrapper.h" @@ -85,4 +85,4 @@ int v3d_hw_get_version(struct v3d_hw *hw) } -#endif /* USE_VC5_SIMULATOR */ +#endif /* USE_V3D_SIMULATOR */ diff --git a/src/gallium/meson.build b/src/gallium/meson.build index 720f373187..a93bf32139 100644 --- a/src/gallium/meson.build +++ b/src/gallium/meson.build @@ -94,11 +94,11 @@ if with_gallium_pl111 else driver_pl111 = declare_dependency() endif -if with_gallium_vc5 +if with_gallium_v3d subdir('winsys/vc5/drm') subdir('drivers/vc5') else - driver_vc5 = declare_dependency() + driver_v3d = declare_dependency() endif if with_gallium_etnaviv subdir('winsys/etnaviv/drm') diff --git a/src/gallium/targets/dri/meson.build b/src/gallium/targets/dri/meson.build index bdbd45839a..e3202c9967 100644 --- a/src/gallium/targets/dri/meson.build +++ b/src/gallium/targets/dri/meson.build @@ -56,7 +56,7 @@ libgallium_dri = shared_library( dependencies : [ dep_selinux, dep_expat, dep_libdrm, dep_llvm, dep_thread, driver_swrast, driver_r300, driver_r600, driver_radeonsi, driver_nouveau, - driver_pl111, driver_vc4, driver_vc5, driver_freedreno, driver_etnaviv, + driver_pl111, driver_v3d, driver_vc4, driver_freedreno, driver_etnaviv, driver_imx, driver_tegra, driver_i915, driver_svga, driver_virgl, driver_swr, ], @@ -68,8 +68,8 @@ foreach d : [[with_gallium_pl111, 'pl111_dri.so'], [with_gallium_freedreno, ['msm_dri.so', 'kgsl_dri.so']], [with_gallium_softpipe or with_gallium_swr, 'swrast_dri.so'], [with_gallium_softpipe and with_gallium_drisw_kms, 'kms_swrast_dri.so'], + [with_gallium_v3d, 'v3d_dri.so'], [with_gallium_vc4, 'vc4_dri.so'], - [with_gallium_vc5, 'vc5_dri.so'], [with_gallium_etnaviv, 'etnaviv_dri.so'], [with_gallium_imx, 'imx-drm_dri.so'], [with_gallium_tegra, 'tegra_dri.so'], diff --git a/src/gallium/targets/dri/target.c b/src/gallium/targets/dri/target.c index e09e776871..835d125f21 100644 --- a/src/gallium/targets/dri/target.c +++ b/src/gallium/targets/dri/target.c @@ -71,6 +71,10 @@ DEFINE_LOADER_DRM_ENTRYPOINT(kgsl) DEFINE_LOADER_DRM_ENTRYPOINT(virtio_gpu) #endif +#if defined(GALLIUM_V3D) +DEFINE_LOADER_DRM_ENTRYPOINT(v3d) +#endif + #if defined(GALLIUM_VC4) DEFINE_LOADER_DRM_ENTRYPOINT(vc4) #if defined(GALLIUM_PL111) @@ -78,10 +82,6 @@ DEFINE_LOADER_DRM_ENTRYPOINT(pl111) #endif #endif -#if defined(GALLIUM_VC5) -DEFINE_LOADER_DRM_ENTRYPOINT(vc5) -#endif - #if defined(GALLIUM_ETNAVIV) DEFINE_LOADER_DRM_ENTRYPOINT(imx_drm) DEFINE_LOADER_DRM_ENTRYPOINT(etnaviv) diff --git a/src/gallium/winsys/vc5/drm/Android.mk b/src/gallium/winsys/vc5/drm/Android.mk index 3b1523baab..4cdd969c26 100644 --- a/src/gallium/winsys/vc5/drm/Android.mk +++ b/src/gallium/winsys/vc5/drm/Android.mk @@ -27,7 +27,7 @@ include $(CLEAR_VARS) LOCAL_SRC_FILES := $(C_SOURCES) -LOCAL_MODULE := libmesa_winsys_vc5 +LOCAL_MODULE := libmesa_winsys_v3d include $(GALLIUM_COMMON_MK) include $(BUILD_STATIC_LIBRARY) diff --git a/src/gallium/winsys/vc5/drm/Makefile.am b/src/gallium/winsys/vc5/drm/Makefile.am index e8584036bf..ac2ef23bb6 100644 --- a/src/gallium/winsys/vc5/drm/Makefile.am +++ b/src/gallium/winsys/vc5/drm/Makefile.am @@ -26,8 +26,8 @@ AM_CFLAGS = \ -I$(top_srcdir)/src/gallium/drivers \ $(GALLIUM_WINSYS_CFLAGS) -noinst_LTLIBRARIES = libvc5drm.la +noinst_LTLIBRARIES = libv3ddrm.la -libvc5drm_la_SOURCES = $(C_SOURCES) +libv3ddrm_la_SOURCES = $(C_SOURCES) EXTRA_DIST = meson.build diff --git a/src/gallium/winsys/vc5/drm/meson.build b/src/gallium/winsys/vc5/drm/meson.build index d85930134b..401aff8f47 100644 --- a/src/gallium/winsys/vc5/drm/meson.build +++ b/src/gallium/winsys/vc5/drm/meson.build @@ -18,8 +18,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. -libvc5winsys = static_library( - 'vc5winsys', +libv3dwinsys = static_library( + 'v3dwinsys', files('vc5_drm_winsys.c'), include_directories : [ inc_src, inc_include, diff --git a/src/gallium/winsys/vc5/drm/vc5_drm_public.h b/src/gallium/winsys/vc5/drm/vc5_drm_public.h index 6e19848154..46aed9d4e1 100644 --- a/src/gallium/winsys/vc5/drm/vc5_drm_public.h +++ b/src/gallium/winsys/vc5/drm/vc5_drm_public.h @@ -26,6 +26,6 @@ struct pipe_screen; -struct pipe_screen *vc5_drm_screen_create(int drmFD); +struct pipe_screen *v3d_drm_screen_create(int drmFD); #endif /* __VC5_DRM_PUBLIC_H__ */ diff --git a/src/gallium/winsys/vc5/drm/vc5_drm_winsys.c b/src/gallium/winsys/vc5/drm/vc5_drm_winsys.c index d089291bf5..9849ef4e00 100644 --- a/src/gallium/winsys/vc5/drm/vc5_drm_winsys.c +++ b/src/gallium/winsys/vc5/drm/vc5_drm_winsys.c @@ -29,7 +29,7 @@ #include "vc5/vc5_screen.h" struct pipe_screen * -vc5_drm_screen_create(int fd) +v3d_drm_screen_create(int fd) { - return vc5_screen_create(fcntl(fd, F_DUPFD_CLOEXEC, 3)); + return v3d_screen_create(fcntl(fd, F_DUPFD_CLOEXEC, 3)); } |