diff options
author | José Fonseca <[email protected]> | 2009-01-08 12:41:45 +0000 |
---|---|---|
committer | José Fonseca <[email protected]> | 2009-01-08 12:41:45 +0000 |
commit | ab3a9f1eeda5b216099763f6eb932da723309f4a (patch) | |
tree | 14a28ce3253ba3f080f7cc92b156699ed5b4ddc1 /src/gallium/drivers/softpipe/sp_context.h | |
parent | 395edbc5151b2ce9dd77a22d104ce886e9326354 (diff) |
gallium: Replace uint64 by standard uint64_t.
uint64 is not (so?) standard, and often redefined by third parties,
causing name clashes.
Diffstat (limited to 'src/gallium/drivers/softpipe/sp_context.h')
-rw-r--r-- | src/gallium/drivers/softpipe/sp_context.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/softpipe/sp_context.h b/src/gallium/drivers/softpipe/sp_context.h index 7ab12a6d702..e2451c6ecb5 100644 --- a/src/gallium/drivers/softpipe/sp_context.h +++ b/src/gallium/drivers/softpipe/sp_context.h @@ -94,7 +94,7 @@ struct softpipe_context { /* Counter for occlusion queries. Note this supports overlapping * queries. */ - uint64 occlusion_count; + uint64_t occlusion_count; /* * Mapped vertex buffers |