Module: Mesa Branch: master Commit: e3962653685fcf7b8a913d4f895b3d0af82fa5b4 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=e3962653685fcf7b8a913d4f895b3d0af82fa5b4
Author: Emil Velikov <[email protected]> Date: Tue Aug 22 11:39:36 2017 +0100 dri_interface.h: add missing stdint.h include Required for uint32_t and friends. Signed-off-by: Emil Velikov <[email protected]> Reviewed-by: Eric Engestrom <[email protected]> Reviewed-by: Nicolai Hähnle <[email protected]> --- include/GL/internal/dri_interface.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/GL/internal/dri_interface.h b/include/GL/internal/dri_interface.h index 0115fd79dc..1c91bde920 100644 --- a/include/GL/internal/dri_interface.h +++ b/include/GL/internal/dri_interface.h @@ -48,6 +48,8 @@ typedef unsigned int drm_drawable_t; typedef struct drm_clip_rect drm_clip_rect_t; #endif +#include <stdint.h> + /** * \name DRI interface structures * _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
