Tizen 2.0 Release
[profile/ivi/osmesa.git] / src / gallium / drivers / i965 / brw_types.h
1 #ifndef BRW_TYPES_H
2 #define BRW_TYPES_H
3
4 #include "pipe/p_compiler.h"
5
6 typedef uint32_t GLuint;
7 typedef uint8_t GLubyte;
8 typedef uint16_t GLushort;
9 typedef int32_t GLint;
10 typedef int8_t GLbyte;
11 typedef int16_t GLshort;
12 typedef float GLfloat;
13
14 /* no GLenum, translate all away */
15
16 typedef uint8_t GLboolean;
17
18 #define GL_FALSE FALSE
19 #define GL_TRUE TRUE
20
21 #endif