diff options
author | José Fonseca <[email protected]> | 2008-06-24 13:51:52 +0900 |
---|---|---|
committer | José Fonseca <[email protected]> | 2008-06-24 13:51:52 +0900 |
commit | 2e328dcde2be8174b2a78936206ced71b03b2b57 (patch) | |
tree | 17f42e18f5f19c542297f81819a9aca3cb311f20 /src/mesa/drivers/dri/mach64 | |
parent | 5c1a78b7a85d23ad1358b34d03a0002a19483655 (diff) |
mesa/dri: User standard integer types.
Diffstat (limited to 'src/mesa/drivers/dri/mach64')
-rw-r--r-- | src/mesa/drivers/dri/mach64/mach64_screen.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/drivers/dri/mach64/mach64_screen.c b/src/mesa/drivers/dri/mach64/mach64_screen.c index b780ba65eab..300a3deaaf9 100644 --- a/src/mesa/drivers/dri/mach64/mach64_screen.c +++ b/src/mesa/drivers/dri/mach64/mach64_screen.c @@ -77,12 +77,12 @@ static __GLcontextModes * fill_in_modes( __GLcontextModes * modes, unsigned num_db_modes, int visType ) { - static const u_int8_t bits[2][4] = { + static const uint8_t bits[2][4] = { { 5, 6, 5, 0 }, { 8, 8, 8, 0 } }; - static const u_int32_t masks[2][4] = { + static const uint32_t masks[2][4] = { { 0x0000F800, 0x000007E0, 0x0000001F, 0x00000000 }, { 0x00FF0000, 0x0000FF00, 0x000000FF, 0x00000000 } }; |