diff options
Diffstat (limited to 'src/gallium/drivers')
| -rw-r--r-- | src/gallium/drivers/nv30/nv30_query.c | 4 | ||||
| -rw-r--r-- | src/gallium/drivers/nv30/nv30_state_emit.c | 2 | ||||
| -rw-r--r-- | src/gallium/drivers/nv40/nv40_query.c | 4 | ||||
| -rw-r--r-- | src/gallium/drivers/nv40/nv40_state_emit.c | 2 | ||||
| -rw-r--r-- | src/gallium/drivers/nv50/nv50_query.c | 2 | ||||
| -rw-r--r-- | src/gallium/drivers/softpipe/sp_context.h | 2 | ||||
| -rw-r--r-- | src/gallium/drivers/softpipe/sp_query.c | 6 | ||||
| -rw-r--r-- | src/gallium/drivers/trace/tr_context.c | 4 | 
8 files changed, 13 insertions, 13 deletions
| diff --git a/src/gallium/drivers/nv30/nv30_query.c b/src/gallium/drivers/nv30/nv30_query.c index d40d75f264..2f974cf5c4 100644 --- a/src/gallium/drivers/nv30/nv30_query.c +++ b/src/gallium/drivers/nv30/nv30_query.c @@ -50,7 +50,7 @@ nv30_query_begin(struct pipe_context *pipe, struct pipe_query *pq)  	 * the existing query to notify completion, but it could be better.  	 */  	if (q->object) { -		uint64 tmp; +		uint64_t tmp;  		pipe->get_query_result(pipe, pq, 1, &tmp);  	} @@ -80,7 +80,7 @@ nv30_query_end(struct pipe_context *pipe, struct pipe_query *pq)  static boolean  nv30_query_result(struct pipe_context *pipe, struct pipe_query *pq, -		  boolean wait, uint64 *result) +		  boolean wait, uint64_t *result)  {  	struct nv30_context *nv30 = nv30_context(pipe);  	struct nv30_query *q = nv30_query(pq); diff --git a/src/gallium/drivers/nv30/nv30_state_emit.c b/src/gallium/drivers/nv30/nv30_state_emit.c index 40fed621b2..9480695d6e 100644 --- a/src/gallium/drivers/nv30/nv30_state_emit.c +++ b/src/gallium/drivers/nv30/nv30_state_emit.c @@ -49,7 +49,7 @@ nv30_state_emit(struct nv30_context *nv30)  	struct nv30_state *state = &nv30->state;  	struct nv30_screen *screen = nv30->screen;  	unsigned i, samplers; -	uint64 states; +	uint64_t states;  	if (nv30->pctx_id != screen->cur_pctx) {  		for (i = 0; i < NV30_STATE_MAX; i++) { diff --git a/src/gallium/drivers/nv40/nv40_query.c b/src/gallium/drivers/nv40/nv40_query.c index 57f39cfab0..9b9a43f49d 100644 --- a/src/gallium/drivers/nv40/nv40_query.c +++ b/src/gallium/drivers/nv40/nv40_query.c @@ -50,7 +50,7 @@ nv40_query_begin(struct pipe_context *pipe, struct pipe_query *pq)  	 * the existing query to notify completion, but it could be better.  	 */  	if (q->object) { -		uint64 tmp; +		uint64_t tmp;  		pipe->get_query_result(pipe, pq, 1, &tmp);  	} @@ -80,7 +80,7 @@ nv40_query_end(struct pipe_context *pipe, struct pipe_query *pq)  static boolean  nv40_query_result(struct pipe_context *pipe, struct pipe_query *pq, -		  boolean wait, uint64 *result) +		  boolean wait, uint64_t *result)  {  	struct nv40_context *nv40 = nv40_context(pipe);  	struct nv40_query *q = nv40_query(pq); diff --git a/src/gallium/drivers/nv40/nv40_state_emit.c b/src/gallium/drivers/nv40/nv40_state_emit.c index ab88dc416e..52ec4c044b 100644 --- a/src/gallium/drivers/nv40/nv40_state_emit.c +++ b/src/gallium/drivers/nv40/nv40_state_emit.c @@ -65,7 +65,7 @@ nv40_state_emit(struct nv40_context *nv40)  	struct nv40_state *state = &nv40->state;  	struct nv40_screen *screen = nv40->screen;  	unsigned i, samplers; -	uint64 states; +	uint64_t states;  	if (nv40->pctx_id != screen->cur_pctx) {  		for (i = 0; i < NV40_STATE_MAX; i++) { diff --git a/src/gallium/drivers/nv50/nv50_query.c b/src/gallium/drivers/nv50/nv50_query.c index 26bd90ccc5..777e77906d 100644 --- a/src/gallium/drivers/nv50/nv50_query.c +++ b/src/gallium/drivers/nv50/nv50_query.c @@ -51,7 +51,7 @@ nv50_query_end(struct pipe_context *pipe, struct pipe_query *q)  static boolean  nv50_query_result(struct pipe_context *pipe, struct pipe_query *q, -		  boolean wait, uint64 *result) +		  boolean wait, uint64_t *result)  {  	NOUVEAU_ERR("unimplemented\n");  	*result = 0xdeadcafe; diff --git a/src/gallium/drivers/softpipe/sp_context.h b/src/gallium/drivers/softpipe/sp_context.h index 7ab12a6d70..e2451c6ecb 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 diff --git a/src/gallium/drivers/softpipe/sp_query.c b/src/gallium/drivers/softpipe/sp_query.c index 2106ee1d23..b0d8e01426 100644 --- a/src/gallium/drivers/softpipe/sp_query.c +++ b/src/gallium/drivers/softpipe/sp_query.c @@ -37,8 +37,8 @@  #include "sp_query.h"  struct softpipe_query { -   uint64 start; -   uint64 end; +   uint64_t start; +   uint64_t end;  }; @@ -87,7 +87,7 @@ static boolean  softpipe_get_query_result(struct pipe_context *pipe,   			  struct pipe_query *q,  			  boolean wait, -			  uint64 *result ) +			  uint64_t *result )  {     struct softpipe_query *sq = softpipe_query(q);     *result = sq->end - sq->start; diff --git a/src/gallium/drivers/trace/tr_context.c b/src/gallium/drivers/trace/tr_context.c index 1dd7719379..f0d51ad82e 100644 --- a/src/gallium/drivers/trace/tr_context.c +++ b/src/gallium/drivers/trace/tr_context.c @@ -274,11 +274,11 @@ static INLINE boolean  trace_context_get_query_result(struct pipe_context *_pipe,                                  struct pipe_query *query,                                 boolean wait, -                               uint64 *presult) +                               uint64_t *presult)  {     struct trace_context *tr_ctx = trace_context(_pipe);     struct pipe_context *pipe = tr_ctx->pipe; -   uint64 result; +   uint64_t result;     boolean _result;     trace_dump_call_begin("pipe_context", "get_query_result"); | 
