diff options
author | Brian <brian.paul@tungstengraphics.com> | 2008-01-15 18:27:14 -0700 |
---|---|---|
committer | Brian <brian.paul@tungstengraphics.com> | 2008-01-15 18:27:14 -0700 |
commit | 62ef6376bef7dcc7f23c676519683e99cd9f7717 (patch) | |
tree | b4f2ebf12a857edaf9f87212857b0af8b8406ecb /src/mesa/pipe/softpipe/sp_context.h | |
parent | 5a185ca09ae9d0774c99a187463d975a40ce9770 (diff) |
Don't include stdint.h or inttypes. Use the uint64 typedef instead of uint64_t.
Diffstat (limited to 'src/mesa/pipe/softpipe/sp_context.h')
-rw-r--r-- | src/mesa/pipe/softpipe/sp_context.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/pipe/softpipe/sp_context.h b/src/mesa/pipe/softpipe/sp_context.h index 394baf0109..3537f86a61 100644 --- a/src/mesa/pipe/softpipe/sp_context.h +++ b/src/mesa/pipe/softpipe/sp_context.h @@ -76,7 +76,7 @@ struct softpipe_context { /* Counter for occlusion queries. Note this supports overlapping * queries. */ - uint64_t occlusion_count; + uint64 occlusion_count; /* * Mapped vertex buffers |