From 40f664a9e5f187d6b98dfd76d1f7e9cefbd7eda6 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: (cherry picked from commit 2410def98fa688aa009b42de3224e12e5ddbaff3) --- .pick_status.json | 2 +- src/mesa/main/glformats.h | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.pick_status.json b/.pick_status.json index e522d150316..9762ee70e4e 100644 --- a/.pick_status.json +++ b/.pick_status.json @@ -1993,7 +1993,7 @@ "description": "mesa/main: add missing include in glformats.h", "nominated": true, "nomination_type": 1, - "resolution": 0, + "resolution": 1, "master_sha": null, "because_sha": "1bf539b3a2129779addde397886870c00045e6d7" }, diff --git a/src/mesa/main/glformats.h b/src/mesa/main/glformats.h index 0a65ef6cace..54a701cdcfc 100644 --- a/src/mesa/main/glformats.h +++ b/src/mesa/main/glformats.h @@ -29,6 +29,7 @@ #include +#include #include