diff options
author | Keith Whitwell <[email protected]> | 2008-09-20 07:32:30 -0700 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2008-09-21 09:45:00 -0700 |
commit | 5a46e176715b0eae7b8a715e8aec42f5a27214fc (patch) | |
tree | 6f8c89c2744f6092a371bbdcdf0a1b9f68124571 /src/mesa/drivers/dri/common/dri_util.h | |
parent | 3474e9de924d92a941b4ea33ecc694f5fad2651f (diff) |
mesa: standardize on C99's uint*_t instead of u_int*_t
Diffstat (limited to 'src/mesa/drivers/dri/common/dri_util.h')
-rw-r--r-- | src/mesa/drivers/dri/common/dri_util.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/drivers/dri/common/dri_util.h b/src/mesa/drivers/dri/common/dri_util.h index 1d89a9a31cf..c0e1bea5e05 100644 --- a/src/mesa/drivers/dri/common/dri_util.h +++ b/src/mesa/drivers/dri/common/dri_util.h @@ -214,7 +214,7 @@ struct __DRIswapInfoRec { /** * Number of swapBuffers operations that have been *completed*. */ - u_int64_t swap_count; + uint64_t swap_count; /** * Unadjusted system time of the last buffer swap. This is the time @@ -228,7 +228,7 @@ struct __DRIswapInfoRec { * swap, it has missed its deadline. If swap_interval is 0, then the * swap deadline is 1 frame after the previous swap. */ - u_int64_t swap_missed_count; + uint64_t swap_missed_count; /** * Amount of time used by the last swap that missed its deadline. This |