diff options
author | Brian Paul <[email protected]> | 2014-08-05 13:07:42 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2014-08-05 13:07:46 -0600 |
commit | 1125d021de98912f89ee6c81ea6a766348395942 (patch) | |
tree | 7a9cbada3aceafaeb052ea4ff81102d78f4fdc50 /src/mesa/main/formats.h | |
parent | fc2b2d337ea52f9de7bfbc8c8975c9000efb9f43 (diff) |
mesa include stdint.h in formats.h
To get uint8_t type, to fix MSVC build.
Trivial.
Diffstat (limited to 'src/mesa/main/formats.h')
-rw-r--r-- | src/mesa/main/formats.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mesa/main/formats.h b/src/mesa/main/formats.h index 8b7dee4bebc..457c8abf822 100644 --- a/src/mesa/main/formats.h +++ b/src/mesa/main/formats.h @@ -35,6 +35,7 @@ #include <GL/gl.h> #include <stdbool.h> +#include <stdint.h> #ifdef __cplusplus |