From: John Stultz Date: Thu, 2 May 2019 20:36:11 +0000 (-0700) Subject: mesa: Makefile.sources: Add nir_lower_fb_read.c to Makefile.sources list X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=c7f2145b4b1551d521de2303b0dc97b56a0e3907;p=mesa.git mesa: Makefile.sources: Add nir_lower_fb_read.c to Makefile.sources list In commit a99c360a4630 (nir: add pass to lower fb reads), a new file was added that needs to also be added to the Makefile.sources list used by the Android and SCons build system. Cc: Rob Clark Cc: Emil Velikov Cc: Amit Pundir Cc: Sumit Semwal Cc: Alistair Strachan Cc: Greg Hartman Cc: Tapani Pälli Cc: Jason Ekstrand Fixes: a99c360a463 ("nir: add pass to lower fb reads") Reviewed-by: Tapani Pälli Reviewed-by: Emil Velikov Signed-off-by: John Stultz --- diff --git a/src/compiler/Makefile.sources b/src/compiler/Makefile.sources index 9bebc3d8867..005256725ff 100644 --- a/src/compiler/Makefile.sources +++ b/src/compiler/Makefile.sources @@ -244,6 +244,7 @@ NIR_FILES = \ nir/nir_lower_constant_initializers.c \ nir/nir_lower_double_ops.c \ nir/nir_lower_drawpixels.c \ + nir/nir_lower_fb_read.c \ nir/nir_lower_fragcoord_wtrans.c \ nir/nir_lower_frexp.c \ nir/nir_lower_global_vars_to_local.c \