summaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/swr
diff options
context:
space:
mode:
authorTim Rowley <[email protected]>2016-03-07 14:59:34 -0600
committerTim Rowley <[email protected]>2016-03-07 16:58:48 -0600
commit035d39b539473e81b5a4f637a5d644bd2031279d (patch)
tree1416090c4b1c18a7290feda58a757df66c0f5f5b /src/gallium/drivers/swr
parentaf41c0b7e05f8d2b4b01a1a178b2bfa209236bfe (diff)
gallium/swr: remove use of UINT64 from swr_fence
Remove use of a win32-style type leaked from the swr rasterizer. Reviewed-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src/gallium/drivers/swr')
-rw-r--r--src/gallium/drivers/swr/swr_fence.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/drivers/swr/swr_fence.cpp b/src/gallium/drivers/swr/swr_fence.cpp
index f97ea22151b..e80faeef06e 100644
--- a/src/gallium/drivers/swr/swr_fence.cpp
+++ b/src/gallium/drivers/swr/swr_fence.cpp
@@ -37,7 +37,7 @@
* to SwrSync call.
*/
static void
-swr_sync_cb(UINT64 userData, UINT64 userData2, UINT64 userData3)
+swr_sync_cb(uint64_t userData, uint64_t userData2, uint64_t userData3)
{
struct swr_fence *fence = (struct swr_fence *)userData;
@@ -53,7 +53,7 @@ swr_fence_submit(struct swr_context *ctx, struct pipe_fence_handle *fh)
struct swr_fence *fence = swr_fence(fh);
fence->write++;
- SwrSync(ctx->swrContext, swr_sync_cb, (UINT64)fence, 0, 0);
+ SwrSync(ctx->swrContext, swr_sync_cb, (uint64_t)fence, 0, 0);
}
/*