From 6635a470381b79240d0d2a423a099ee4b9ff7bf2 Mon Sep 17 00:00:00 2001 From: Mauro Rossi Date: Sat, 20 Feb 2021 02:43:47 +0100 Subject: [PATCH] android: ac/rgp: fix building error Include "util/list.h" as per "util/simple_mtx.h" one line later Fixes the following building error in Android: In file included from external/mesa/src/amd/common/ac_rgp.c:24: external/mesa/src/amd/common/ac_rgp.h:31:10: fatal error: 'list.h' file not found ^~~~~~~~ 1 error generated. Fixes: 12515d6b ("ac/rgp: add rgp co, col, pso data structures") Reviewed-by: Samuel Pitoiset Reviewed-by: Pierre-Eric Pelloux-Prayer Closes: https://gitlab.freedesktop.org/mesa/mesa/-/issues/4334 Part-of: --- src/amd/common/ac_rgp.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/amd/common/ac_rgp.h b/src/amd/common/ac_rgp.h index 2ddcd82eb38..76d541410ca 100644 --- a/src/amd/common/ac_rgp.h +++ b/src/amd/common/ac_rgp.h @@ -28,7 +28,7 @@ #include #include "compiler/shader_enums.h" -#include "list.h" +#include "util/list.h" #include "util/simple_mtx.h" struct radeon_info;