From c7f2145b4b1551d521de2303b0dc97b56a0e3907 Mon Sep 17 00:00:00 2001 From: John Stultz Date: Thu, 2 May 2019 13:36:11 -0700 Subject: [PATCH] mesa: Makefile.sources: Add nir_lower_fb_read.c to Makefile.sources list MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit 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 --- src/compiler/Makefile.sources | 1 + 1 file changed, 1 insertion(+) diff --git a/src/compiler/Makefile.sources b/src/compiler/Makefile.sources index 9bebc3d..0052567 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 \ -- 2.7.4