From: Rob Clark Date: Tue, 23 Apr 2013 15:20:25 +0000 (-0400) Subject: freedreno: add noop driver X-Git-Tag: mesa-9.2.1~1586 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7a837da556c17a8dc5eb7c609ba2cf4628c2c310;p=platform%2Fupstream%2Fmesa.git freedreno: add noop driver It is useful for debugging. Signed-off-by: Rob Clark --- diff --git a/src/gallium/targets/dri-freedreno/Makefile.am b/src/gallium/targets/dri-freedreno/Makefile.am index 59293a6..cfa1f37 100644 --- a/src/gallium/targets/dri-freedreno/Makefile.am +++ b/src/gallium/targets/dri-freedreno/Makefile.am @@ -33,7 +33,8 @@ AM_CPPFLAGS = \ -I$(top_srcdir)/src/mapi \ -I$(top_builddir)/src/mesa/drivers/dri/common \ -DGALLIUM_RBUG \ - -DGALLIUM_TRACE + -DGALLIUM_TRACE \ + -DGALLIUM_NOOP dridir = $(DRI_DRIVER_INSTALL_DIR) dri_LTLIBRARIES = kgsl_dri.la @@ -55,6 +56,7 @@ kgsl_dri_la_LIBADD = \ $(top_builddir)/src/gallium/drivers/freedreno/libfreedreno.la \ $(top_builddir)/src/gallium/drivers/trace/libtrace.la \ $(top_builddir)/src/gallium/drivers/rbug/librbug.la \ + $(top_builddir)/src/gallium/drivers/noop/libnoop.la \ $(GALLIUM_DRI_LIB_DEPS) \ $(LIBDRM_LIBS) \ $(FREEDRENO_LIBS)