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 <samuel.pitoiset@gmail.com>
Reviewed-by: Pierre-Eric Pelloux-Prayer <pierre-eric.pelloux-prayer@amd.com>
Closes: https://gitlab.freedesktop.org/mesa/mesa/-/issues/4334
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/9202>
This commit is contained in:
Mauro Rossi 2021-02-20 02:43:47 +01:00 committed by Marge Bot
parent 4675121ea6
commit 6635a47038

View file

@ -28,7 +28,7 @@
#include <stdint.h>
#include "compiler/shader_enums.h"
#include "list.h"
#include "util/list.h"
#include "util/simple_mtx.h"
struct radeon_info;