From 2410def98fa688aa009b42de3224e12e5ddbaff3 Mon Sep 17 00:00:00 2001 From: Erik Faye-Lund Date: Mon, 16 Nov 2020 12:33:36 +0100 Subject: [PATCH] mesa/main: add missing include in glformats.h MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This header uses uint32_t without including stdint.h. This worked fine by accident until a new c-source started including it. Fixes: 1bf539b3a21 ("mesa: Clamp some depth values in glClearBufferfv") Reviewed-by: Tapani Pälli Part-of: --- src/mesa/main/glformats.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/mesa/main/glformats.h b/src/mesa/main/glformats.h index 90438ffba0d..98987a15f4e 100644 --- a/src/mesa/main/glformats.h +++ b/src/mesa/main/glformats.h @@ -29,6 +29,7 @@ #include +#include #include