From f891c78a14a72b51d7f5e62500856ef35b075807 Mon Sep 17 00:00:00 2001 From: Mauro Rossi Date: Mon, 29 Mar 2021 13:25:19 +0200 Subject: [PATCH] android: panfrost: Use the blend shader cache attached to the device pan_blend_shaders.{c,h} files are removed from Makefile.sources in order to avoid the following building error: FAILED: out/target/product/x86_64/obj_x86/STATIC_LIBRARIES/libmesa_pipe_panfrost_intermediates/pan_blend_shaders.o ... clang: error: no such file or directory: 'external/mesa/src/gallium/drivers/panfrost/pan_blend_shaders.c' clang: error: no input files Fixes: 7994929e84a3 ("panfrost: Use the blend shader cache attached to the device") Acked-by: Alyssa Rosenzweig Part-of: --- src/gallium/drivers/panfrost/Makefile.sources | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/gallium/drivers/panfrost/Makefile.sources b/src/gallium/drivers/panfrost/Makefile.sources index 81e9884b248..097b49b71fe 100644 --- a/src/gallium/drivers/panfrost/Makefile.sources +++ b/src/gallium/drivers/panfrost/Makefile.sources @@ -2,8 +2,6 @@ C_SOURCES := \ pan_assemble.c \ pan_blend_cso.c \ pan_blend_cso.h \ - pan_blend_shaders.c \ - pan_blend_shaders.h \ pan_blit.c \ pan_cmdstream.c \ pan_cmdstream.h \