From: Emil Velikov Date: Fri, 4 Apr 2014 14:45:08 +0000 (+0100) Subject: targets/pipe-loader: drop driver_descriptor symbol from swrast X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=658b36ff78a00dbbc1b9c9cb9adf4b984a89c45b;p=mesa.git targets/pipe-loader: drop driver_descriptor symbol from swrast The symbol is used for hardware only drivers. For swrast the loader uses swrast_create_screen. Add VISIBILITY_CFLAGS while we're here. Signed-off-by: Emil Velikov Reviewed-by: Francisco Jerez --- diff --git a/src/gallium/targets/pipe-loader/Makefile.am b/src/gallium/targets/pipe-loader/Makefile.am index 76271a15fed..6a5b38066cb 100644 --- a/src/gallium/targets/pipe-loader/Makefile.am +++ b/src/gallium/targets/pipe-loader/Makefile.am @@ -27,7 +27,8 @@ AM_CPPFLAGS = \ -I$(top_srcdir)/include \ -I$(top_srcdir)/src/gallium/drivers \ -I$(top_srcdir)/src/gallium/winsys \ - $(LIBDRM_CFLAGS) \ + $(LIBDRM_CFLAGS) \ + $(VISIBILITY_CFLAGS) \ -DGALLIUM_RBUG \ -DGALLIUM_TRACE \ -DGALLIUM_GALAHAD diff --git a/src/gallium/targets/pipe-loader/pipe_swrast.c b/src/gallium/targets/pipe-loader/pipe_swrast.c index 092abf07a52..f7f354acf3f 100644 --- a/src/gallium/targets/pipe-loader/pipe_swrast.c +++ b/src/gallium/targets/pipe-loader/pipe_swrast.c @@ -6,9 +6,6 @@ PUBLIC struct pipe_screen * swrast_create_screen(struct sw_winsys *ws); -PUBLIC -DRM_DRIVER_DESCRIPTOR("swrast", NULL, NULL, NULL) - struct pipe_screen * swrast_create_screen(struct sw_winsys *ws) {