Module: Mesa Branch: main Commit: 0d6c240fcc89fe3be14139e6a23304db6d0af5d3 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=0d6c240fcc89fe3be14139e6a23304db6d0af5d3
Author: Eric Engestrom <[email protected]> Date: Mon Dec 12 21:27:06 2022 +0000 gallium/u_screen.h: add missing stdint.h include For uint64_t. Signed-off-by: Eric Engestrom <[email protected]> Reviewed-by: Alyssa Rosenzweig <[email protected]> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/20180> --- src/gallium/auxiliary/util/u_screen.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/gallium/auxiliary/util/u_screen.h b/src/gallium/auxiliary/util/u_screen.h index 781f3415481..22b2f378bbd 100644 --- a/src/gallium/auxiliary/util/u_screen.h +++ b/src/gallium/auxiliary/util/u_screen.h @@ -21,6 +21,8 @@ * IN THE SOFTWARE. */ +#include <stdint.h> + struct pipe_screen; enum pipe_cap;
