diff options
author | Jose Fonseca <[email protected]> | 2017-06-13 11:52:08 +0100 |
---|---|---|
committer | Jose Fonseca <[email protected]> | 2017-06-13 11:53:07 +0100 |
commit | e1d4c966dc7711455c834f7a4101293ae1609d7e (patch) | |
tree | 6480e07383d2cd844dd6a03abd1c046fd9a2d200 /src/gallium/drivers/llvmpipe/lp_context.c | |
parent | 6d8a387f78cdeedc8c404a1b4c116a19023f2e19 (diff) |
llvmpipe: Match pipe_context::render_condition prototype.
To silence compiler warnings. Trivial.
Diffstat (limited to 'src/gallium/drivers/llvmpipe/lp_context.c')
-rw-r--r-- | src/gallium/drivers/llvmpipe/lp_context.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/gallium/drivers/llvmpipe/lp_context.c b/src/gallium/drivers/llvmpipe/lp_context.c index c18e72c49f2..599a9f1573a 100644 --- a/src/gallium/drivers/llvmpipe/lp_context.c +++ b/src/gallium/drivers/llvmpipe/lp_context.c @@ -119,10 +119,10 @@ do_flush( struct pipe_context *pipe, static void -llvmpipe_render_condition ( struct pipe_context *pipe, - struct pipe_query *query, - boolean condition, - uint mode ) +llvmpipe_render_condition(struct pipe_context *pipe, + struct pipe_query *query, + boolean condition, + enum pipe_render_cond_flag mode) { struct llvmpipe_context *llvmpipe = llvmpipe_context( pipe ); |